9 lines
236 B
EmacsLisp
9 lines
236 B
EmacsLisp
;;; Functions -- summary
|
|
;;; Commentary:
|
|
;;; Code:
|
|
(defun kill-other-buffers ()
|
|
"Kill all buffers except for the current one."
|
|
(interactive)
|
|
(mapc 'kill-buffer (delq (current-buffer) (buffer-list)))
|
|
)
|
|
;;; functions.el ends here
|