Replace language lambdas with separate functions
This commit is contained in:
parent
63475697d5
commit
83569bf5f9
9 changed files with 110 additions and 57 deletions
6
functions.el
Normal file
6
functions.el
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
(defun kill-other-buffers
|
||||
"Kill all buffers except for the current one"
|
||||
(interactive)
|
||||
(mapc 'kill-buffer (delq (current-buffer) (buffer-list)))
|
||||
)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue