emacs/functions.el
2017-04-23 22:56:55 +03:00

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