diff options
author | Amin Bandali <mab@gnu.org> | 2020-01-21 21:23:35 -0500 |
---|---|---|
committer | Amin Bandali <mab@gnu.org> | 2020-01-21 21:42:29 -0500 |
commit | a5cc22f4475d08067bac19d3d36d27b99d2aa7ed (patch) | |
tree | b19f417aedd9427fca0596336c28b3ed6e1cca40 | |
parent | b7d4b4b37922a757b3e587ee5779fc03f4c688dd (diff) | |
download | configs-a5cc22f4475d08067bac19d3d36d27b99d2aa7ed.tar.gz configs-a5cc22f4475d08067bac19d3d36d27b99d2aa7ed.tar.xz configs-a5cc22f4475d08067bac19d3d36d27b99d2aa7ed.zip |
emacs: use custom function for killing current buffer
-rw-r--r-- | .emacs.d/init.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 46dd998..e36e204 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -226,6 +226,12 @@ For disabling the behaviour for certain buffers and/or modes." (make-local-variable 'mouse-autoselect-window) (setq mouse-autoselect-window nil)) +(defun b/kill-current-buffer () + "Kill the current buffer." + ;; also see https://redd.it/64xb3q + (interactive) + (kill-buffer (current-buffer))) + ;;; Defaults @@ -497,7 +503,7 @@ For disabling the behaviour for certain buffers and/or modes." ("C-S-h C" . describe-char) ("C-S-h F" . describe-face) - ("C-x k" . kill-this-buffer) + ("C-x k" . b/kill-current-buffer) ("C-x K" . kill-buffer) ("C-x s" . save-buffer) ("C-x S" . save-some-buffers) |