diff options
author | Alan Pearce | 2013-06-02 20:24:13 +0100 |
---|---|---|
committer | Alan Pearce | 2013-06-02 20:24:13 +0100 |
commit | 95ccf32f4ab3f8bc42582093d711a61f8c988f3d (patch) | |
tree | 253f312642e871b3d59d2fbeea4845e7f80d0f03 /emacs | |
parent | 089fc46ad23ad12b9be83705b10121750c325f08 (diff) | |
download | nixfiles-95ccf32f4ab3f8bc42582093d711a61f8c988f3d.tar.lz nixfiles-95ccf32f4ab3f8bc42582093d711a61f8c988f3d.tar.zst nixfiles-95ccf32f4ab3f8bc42582093d711a61f8c988f3d.zip |
Emacs: Bind shift+space to set the mark
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 973b94a2..5a93632d 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -781,6 +781,8 @@ Also returns nil if pid is nil." ;; replace highlighted text rather than just inserting at point (delete-selection-mode t) +(bind-key "S-SPC" #'set-mark-command) + (use-package subword :init (global-subword-mode t)) |