aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-30 00:57:52 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-30 00:57:52 -0400
commit3f21143e89c61d5e843b9dc5b4df05e91ba880fd (patch)
tree5963a01531c7d83f48f8aeebb9df94c4dffc5d40 /init.el
parentAdd functionality for multiple cursors (diff)
downloadmmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.tar.gz
mmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.tar.bz2
mmosmacs-3f21143e89c61d5e843b9dc5b4df05e91ba880fd.zip
Fix IJKL version of org-mode's `M-<up>`/`M-<down>` keybinds
Diffstat (limited to 'init.el')
-rw-r--r--init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el
index 2cc248d..4a8a16c 100644
--- a/init.el
+++ b/init.el
@@ -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