diff options
author | Alan Pearce | 2017-09-07 16:58:20 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-07 16:58:20 +0200 |
commit | 088f3423cbd586728551a910979dd130523adbde (patch) | |
tree | 18891bab291d47c656053478f7a8cd67b6b167c4 /emacs/.emacs.d | |
parent | 25a441247067ce2a0f22c2eea69fc61738008d09 (diff) | |
download | nixfiles-088f3423cbd586728551a910979dd130523adbde.tar.lz nixfiles-088f3423cbd586728551a910979dd130523adbde.tar.zst nixfiles-088f3423cbd586728551a910979dd130523adbde.zip |
Emacs: Ensure shift keys are not overridden in org-mode
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/main.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 0f1b353e..56a62755 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" |