aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs/init.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/init.org b/emacs/init.org
index f9b9a7d..452dbe8 100644
--- a/emacs/init.org
+++ b/emacs/init.org
@@ -255,6 +255,12 @@ Disable overwrite-mode.
(define-key global-map [(insert)] nil)
#+END_SRC
+Kill GNU Emacs by hitting =C-x r q= (mnemonic /Really quit/).
+
+#+BEGIN_SRC elisp
+ (global-set-key (kbd "C-x r q") 'kill-emacs)
+#+END_SRC
+
** Others
Revert buffers automatically when underlying files are changed externally.