From d782dd248e28c76abc467f873eb4b00576729f5d Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Tue, 5 Jan 2016 21:49:36 +0100 Subject: [PATCH] Bind new functions in emacs 25 --- init.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.org b/init.org index 639446c..453cdc3 100644 --- a/init.org +++ b/init.org @@ -1279,6 +1279,9 @@ Bind some native Emacs functions. #+BEGIN_SRC emacs-lisp + (define-key custom-bindings-map (kbd "M-u") 'upcase-dwim) + (define-key custom-bindings-map (kbd "M-c") 'capitalize-dwim) + (define-key custom-bindings-map (kbd "M-l") 'downcase-dwim) (define-key custom-bindings-map (kbd "C-j") 'newline-and-indent) (define-key custom-bindings-map (kbd "C-c s") 'ispell-word) (define-key custom-bindings-map (kbd "C-c c") 'org-capture)