diff options
author | Alan Pearce | 2014-08-13 19:35:39 +0100 |
---|---|---|
committer | Alan Pearce | 2014-08-13 19:35:39 +0100 |
commit | d09f8ce923755a57bdf5aa8b65204202be49c517 (patch) | |
tree | 7032a1682ad89f97487521e612ffe8ae9a96f066 | |
parent | d5001338c9ad9d5cf54941a39254597cec4f7801 (diff) | |
download | nixfiles-d09f8ce923755a57bdf5aa8b65204202be49c517.tar.lz nixfiles-d09f8ce923755a57bdf5aa8b65204202be49c517.tar.zst nixfiles-d09f8ce923755a57bdf5aa8b65204202be49c517.zip |
Emacs: Rebind C-M-[ae] to be useful in text modes
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 4cc5fdd3..37c79240 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -959,6 +959,9 @@ mouse-1: Display Line and Column Mode Menu")))))) ;;;; Text editing +(bind-key "C-M-a" #'backward-paragraph text-mode-map) +(bind-key "C-M-e" #'forward-paragraph text-mode-map) + ;; Enable upcase and downcase-region (put 'upcase-region 'disabled nil) (put 'downcase-region 'disabled nil) |