summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-09-07 16:58:20 +0200
committerAlan Pearce2017-09-07 16:58:20 +0200
commit088f3423cbd586728551a910979dd130523adbde (patch)
tree18891bab291d47c656053478f7a8cd67b6b167c4 /emacs
parent25a441247067ce2a0f22c2eea69fc61738008d09 (diff)
downloaddotfiles-088f3423cbd586728551a910979dd130523adbde.tar.lz
dotfiles-088f3423cbd586728551a910979dd130523adbde.tar.zst
dotfiles-088f3423cbd586728551a910979dd130523adbde.zip
Emacs: Ensure shift keys are not overridden in org-mode
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/main.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index 0f1b353..56a6275 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -1113,10 +1113,10 @@
 
 ;; #+BEGIN_SRC emacs-lisp
 (use-package windmove
-  :bind (("S-<left>"  . windmove-left)
-         ("S-<right>" . windmove-right)
-         ("S-<up>"    . windmove-up)
-         ("S-<down>"  . windmove-down)))
+  :bind* (("S-<left>"  . windmove-left)
+          ("S-<right>" . windmove-right)
+          ("S-<up>"    . windmove-up)
+          ("S-<down>"  . windmove-down)))
 ;; #+END_SRC
 ;; ** Blogging
 
@@ -1849,6 +1849,7 @@ With prefix TO-CURRENT-BUFFER, insert command output into buffer."
   :defer 8
   :defines (org-table-duration-custom-format)
   :init (setq org-replace-disputed-keys t
+              org-support-shift-select 'always
               org-ellipsis "…")
   :config (progn
             (setq org-directory "~/Sync/org"