projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
emacs: use custom function for killing current buffer
[~bandali/configs]
/
.emacs.d
/
init.el
diff --git
a/.emacs.d/init.el
b/.emacs.d/init.el
index
6e24e52
..
e36e204
100644
(file)
--- 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))
(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)))
+
\f
;;; Defaults
\f
;;; 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-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)
("C-x K" . kill-buffer)
("C-x s" . save-buffer)
("C-x S" . save-some-buffers)
@@
-2685,6
+2691,7
@@
https://csclub.uwaterloo.ca/~abandali")
(erc-cmd-DEOP (format "%s" (erc-current-nick))))
(add-to-list 'erc-modules 'keep-place)
(add-to-list 'erc-modules 'notifications)
(erc-cmd-DEOP (format "%s" (erc-current-nick))))
(add-to-list 'erc-modules 'keep-place)
(add-to-list 'erc-modules 'notifications)
+ (add-to-list 'erc-modules 'smiley)
(add-to-list 'erc-modules 'spelling)
(add-to-list 'erc-modules 'scrolltoplace)
(erc-update-modules))
(add-to-list 'erc-modules 'spelling)
(add-to-list 'erc-modules 'scrolltoplace)
(erc-update-modules))