diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-30 00:57:52 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-30 00:57:52 -0400 |
commit | 3f21143e89c61d5e843b9dc5b4df05e91ba880fd (patch) | |
tree | 5963a01531c7d83f48f8aeebb9df94c4dffc5d40 | |
parent | Add functionality for multiple cursors (diff) | |
download | mmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.tar.gz mmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.tar.bz2 mmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.zip |
Fix IJKL version of org-mode's `M-<up>`/`M-<down>` keybinds
-rw-r--r-- | init.el | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1153,6 +1153,10 @@ | |||
1153 | ;; TAB | 1153 | ;; TAB |
1154 | (global-set-key (kbd "<s-tab>") (kbd "<tab>")) | 1154 | (global-set-key (kbd "<s-tab>") (kbd "<tab>")) |
1155 | 1155 | ||
1156 | ;; Fix "IK" M-arrow movement for org-mode | ||
1157 | (define-key org-mode-map (kbd "s-M-i") (kbd "M-<up>")) | ||
1158 | (define-key org-mode-map (kbd "s-M-k") (kbd "M-<down>")) | ||
1159 | |||
1156 | 1160 | ||
1157 | ;; --------------------------------- | 1161 | ;; --------------------------------- |
1158 | ;; Insert date/time at POINT | 1162 | ;; Insert date/time at POINT |