summaryrefslogtreecommitdiff
path: root/dotfiles-darwin/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles-darwin/emacs/init.el')
-rw-r--r--dotfiles-darwin/emacs/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/dotfiles-darwin/emacs/init.el b/dotfiles-darwin/emacs/init.el
index a34ffe4..c400d54 100644
--- a/dotfiles-darwin/emacs/init.el
+++ b/dotfiles-darwin/emacs/init.el
@@ -20,3 +20,8 @@
;; “Window” Management
(keymap-global-set "C-c l" #'my/resize-frame)
+
+(dolist (k '(("C-s-<left>" . "C-c l i") ("C-s-<right>" . "C-c l o")))
+ (if (keymap-global-lookup (car k))
+ (message "`%s' is already bound, skipping." (car k))
+ (keymap-global-set (car k) (cdr k))))