diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-15 22:26:33 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-15 22:26:33 -0500 |
commit | d9a2901dcbf615ab32b76607e9ab2baac90eb895 (patch) | |
tree | b88dddb80a85ac3bc069b08a2f2eaf33912c23b4 | |
parent | 02a57cfeb8da07af03ef5e36e71ffb3d7c3d6a44 (diff) | |
download | emacs.d-d9a2901dcbf615ab32b76607e9ab2baac90eb895.tar.gz |
Don't use global-unset-key
-rw-r--r-- | lisp/init-general.el | 6 |
1 files changed, 3 insertions, 3 deletions
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 |