From d04936e09020e5e0f2b4676b67652855e4d3c278 Mon Sep 17 00:00:00 2001 From: David Florness Date: Wed, 13 Dec 2017 18:13:20 -0700 Subject: [PATCH] C-x C-c always fully kills Emacs After asking to save buffers, of course --- lisp/setup-keys.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/setup-keys.el b/lisp/setup-keys.el index bca79fd..3967dc0 100644 --- a/lisp/setup-keys.el +++ b/lisp/setup-keys.el @@ -49,5 +49,10 @@ ("" . evil-org-return)))) +;;; I don't always know where my frames are, and I want a way to kill +;;; Emacs 100% of the time +(global-set-key (kbd "C-x C-c") 'save-buffers-kill-emacs) + + (provide 'setup-keys) ;;; setup-keys.el ends here -- 2.38.4