How do I close all but the current buffer in Emacs? Similar to "Close other tabs" feature in modern web browsers?
|
For a more manual approach, you can list all buffers with C-x C-b, mark buffers in the list for deletion with d, and then use x to remove them. I also recommend replacing list-buffers with the more advanced ibuffer: m (mark the buffer you want to keep) I also use this snippet from the Emacs Wiki, which would further streamline this manual approach:
|
||||
|
|
|
From EmacsWiki: Killing Buffers:
Edit: updated with feedback from Gilles |
|||||
|
|
There isn't a way directly in emacs to do this. You could write a function to do this. The following will close all the buffers: (defun close-all-buffers () (interactive) (mapc 'kill-buffer (buffer-list))) |
|||||
|
It works as you expected. And after reading @Starkey's answer, I think this will be better:
(buffer-list (current-buffer)) will return a list that contains all the existing buffers, with the current buffer at the head of the list. This is my first answer on StackOverflow. Hope it helps :) |
||||
|
|