From 088f3423cbd586728551a910979dd130523adbde Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 7 Sep 2017 16:58:20 +0200 Subject: Emacs: Ensure shift keys are not overridden in org-mode --- emacs/.emacs.d/main.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'emacs') 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-" . windmove-left) - ("S-" . windmove-right) - ("S-" . windmove-up) - ("S-" . windmove-down))) + :bind* (("S-" . windmove-left) + ("S-" . windmove-right) + ("S-" . windmove-up) + ("S-" . 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" -- cgit 1.4.1