From d9a2901dcbf615ab32b76607e9ab2baac90eb895 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 15 Feb 2015 22:26:33 -0500 Subject: Don't use global-unset-key --- lisp/init-general.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lisp/init-general.el') diff --git a/lisp/init-general.el b/lisp/init-general.el index cc17dce..55b1c8a 100644 --- a/lisp/init-general.el +++ b/lisp/init-general.el @@ -49,12 +49,12 @@ (global-set-key (kbd "C-c j") 'km/imenu) ;; Disable `suspend-frame' binding. -(global-unset-key (kbd "C-x C-z")) +(global-set-key (kbd "C-x C-z") nil) ;; Avoid shift key for `backward-paragraph' and `forward-paragraph'. -(global-unset-key (kbd "M-}")) +(global-set-key (kbd "M-}") nil) (global-set-key (kbd "M-]") 'forward-paragraph) -(global-unset-key (kbd "M-{")) +(global-set-key (kbd "M-{") nil) (global-set-key (kbd "M-[") 'backward-paragraph) ;; This is also bound to 'm', but I always want to press 'j' because -- cgit v1.2.3