diff options
author | Alan Pearce | 2016-07-05 11:17:33 +0200 |
---|---|---|
committer | Alan Pearce | 2016-07-05 11:17:33 +0200 |
commit | 5e4dc87f6dd7c81cde6fbddfcc85644905fb25e3 (patch) | |
tree | 7c523c2e7e4509f31ee7c0f01c6a92c5341b041a /tag-emacs/emacs.d/init.org | |
parent | 9626966fb05cd3c309316f12ecc1a0ea49ef9434 (diff) | |
download | nixfiles-5e4dc87f6dd7c81cde6fbddfcc85644905fb25e3.tar.lz nixfiles-5e4dc87f6dd7c81cde6fbddfcc85644905fb25e3.tar.zst nixfiles-5e4dc87f6dd7c81cde6fbddfcc85644905fb25e3.zip |
Emacs: Disable “fast” keys for expand-region
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 5382bdce..905b46e6 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2132,8 +2132,9 @@ Expanding the region by semantic units was something I quite liked from Sublime Text. As always, there’s a mode for that. #+BEGIN_SRC emacs-lisp -(use-package expand-region - :bind ("C-M-SPC" . er/expand-region)) + (use-package expand-region + :bind ("C-M-SPC" . er/expand-region) + :config (setq expand-region-fast-keys-enabled nil)) #+END_SRC ** Typography |