From: James Bunton Date: Wed, 20 Jul 2016 00:08:17 +0000 (+1000) Subject: key bindings X-Git-Url: https://code.delx.au/dotemacs/commitdiff_plain/4107744511887482b6af8e1e30763aa7ca7d38e3?hp=4572ff7cb8e96f31789c463b2783a69243f1589e key bindings --- diff --git a/README.txt b/README.txt index 0a3d320..1f8488f 100644 --- a/README.txt +++ b/README.txt @@ -4,6 +4,7 @@ https://www.gnu.org/software/emacs/manual/html_node/elisp/Key-Binding-Convention # General commands C-x C-c Quit Emacs +C-u C-x C-c Save and quit C-g Cancel command C-/ Undo C-g C-/ Undo undo diff --git a/lisp/my-keys.el b/lisp/my-keys.el index 1b4a6b7..372fe2f 100644 --- a/lisp/my-keys.el +++ b/lisp/my-keys.el @@ -1,3 +1,6 @@ +;; Disable suspend-frame, it's annoying +(global-set-key (kbd "C-z") nil) + ;; General commands (global-set-key (kbd "M-x") 'counsel-M-x)