Emacs: Rebind C-M-[ae] to be useful in text modes
Alan Pearce alan@alanpearce.co.uk
Wed, 13 Aug 2014 19:35:39 +0100
1 files changed, 3 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.el → tag-emacs/emacs.d/init.el
@@ -959,6 +959,9 @@ (comint-delchar-or-maybe-eof arg))) ;;;; 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)