summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-03-06 18:21:53 -0500
committerKyle Meyer <kyle@kyleam.com>2014-03-06 18:21:53 -0500
commit2351fb3d634ae4fee32a7e1597d3897b1a56ac8d (patch)
tree11d0e8cc98646437f249379cdee4aebe8a9b98a6 /lisp
parent58dc2eddb9a4fc02c069d05c90897dbc96fe8ed3 (diff)
downloademacs.d-2351fb3d634ae4fee32a7e1597d3897b1a56ac8d.tar.gz
Disable suspend-frame keybinding
I never use and sometimes hit it on accident when use C-x z.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-general.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/init-general.el b/lisp/init-general.el
index eb5af32..e131490 100644
--- a/lisp/init-general.el
+++ b/lisp/init-general.el
@@ -43,6 +43,9 @@
(global-set-key (kbd "C-h :") 'find-function)
+;; Disable `suspend-frame' binding.
+(global-unset-key (kbd "C-x C-z"))
+
;; Avoid shift key for `backward-paragraph' and `forward-paragraph'.
(global-unset-key (kbd "M-}"))
(global-set-key (kbd "M-]") 'forward-paragraph)