Skip to content

Instantly share code, notes, and snippets.

@v2e4lisp
Last active December 10, 2015 15:28
Show Gist options
  • Save v2e4lisp/4454312 to your computer and use it in GitHub Desktop.
Save v2e4lisp/4454312 to your computer and use it in GitHub Desktop.
delete all other buffer except the current one.
(defun only-current-buffer ()
(interactive)
(mapc 'kill-buffer (cdr (buffer-list (current-buffer)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment