Created
March 4, 2014 10:39
-
-
Save kuanyui/9344075 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;確認後再關掉 Emacs 啦 | |
(defun save-buffers-kill-terminal-after-confirm () | |
"老是不小心關掉 Emacs,揪咪。" | |
(interactive) | |
(if (yes-or-no-p "Really quit Emacs?") | |
(save-buffers-kill-terminal) | |
"好極了!")) | |
(global-unset-key (kbd "C-x C-c")) | |
(global-set-key (kbd "C-x C-c") 'save-buffers-kill-terminal-after-confirm) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment