diff options
author | Jesús <heckyel@hyperbola.info> | 2019-03-13 19:40:00 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-03-13 19:40:00 -0500 |
commit | 13dc53f43f38dc892a9f6716dae8a557beb624c9 (patch) | |
tree | 586308549dd56faf842625911059b6678b89650b | |
parent | 6457d54ec74f54b331039ccb2949ba13dbe87706 (diff) | |
download | emacs-personal-13dc53f43f38dc892a9f6716dae8a557beb624c9.tar.lz emacs-personal-13dc53f43f38dc892a9f6716dae8a557beb624c9.tar.xz emacs-personal-13dc53f43f38dc892a9f6716dae8a557beb624c9.zip |
fix: to use shift-selection with Org-mode, customize 'org-support-shift-select
-rw-r--r-- | modules/init-editing-utils.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/init-editing-utils.el b/modules/init-editing-utils.el index be6d047..2c6f064 100644 --- a/modules/init-editing-utils.el +++ b/modules/init-editing-utils.el @@ -48,6 +48,10 @@ indent-tabs-mode nil) ;;---------------------------------------------------------------------------- +;;Fix ORG +;;---------------------------------------------------------------------------- +(setq org-support-shift-select 'always) +;;---------------------------------------------------------------------------- ;; Undo-tree ;;---------------------------------------------------------------------------- (use-package undo-tree |