summaryrefslogtreecommitdiff
path: root/lisp/init-general.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-02-15 22:26:33 -0500
committerKyle Meyer <kyle@kyleam.com>2015-02-15 22:26:33 -0500
commitd9a2901dcbf615ab32b76607e9ab2baac90eb895 (patch)
treeb88dddb80a85ac3bc069b08a2f2eaf33912c23b4 /lisp/init-general.el
parent02a57cfeb8da07af03ef5e36e71ffb3d7c3d6a44 (diff)
downloademacs.d-d9a2901dcbf615ab32b76607e9ab2baac90eb895.tar.gz
Don't use global-unset-key
Diffstat (limited to 'lisp/init-general.el')
-rw-r--r--lisp/init-general.el6
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