Emacs: Ensure shift keys are not overridden in org-mode
Alan Pearce alan@alanpearce.eu
Thu, 07 Sep 2017 16:58:20 +0200
1 files changed, 5 insertions(+), 4 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -1113,10 +1113,10 @@ ;; Directional window movement ;; #+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 @@ ("C-c l" . org-store-link)) :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"