Add alchemist to elixir mode

This commit is contained in:
Maciej Szlosarczyk 2017-04-23 22:56:55 +03:00
parent 83569bf5f9
commit 20eb71b9c1
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
3 changed files with 21 additions and 14 deletions

View file

@ -1,6 +1,9 @@
(defun kill-other-buffers
"Kill all buffers except for the current one"
;;; 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