emacs - How do you list and manage hidden buffers? -


when calling switch-to-buffer, in minibuffer, when press space, can see hidden buffers don't see, *minibuf-0* example.

how list hidden buffers list of buffers shown list-buffers ? if it's not possible using list-buffers, how manage them ?

you can tweak function show buffers, so:

(defun list-all-buffers (&optional files-only)   "display list of names of existing buffers. list displayed in buffer named `*buffer list*'. non-null optional arg files-only means mention file buffers.  more information, see function `buffer-menu'."   (interactive "p")   (display-buffer (list-buffers-noselect files-only (buffer-list))))  (define-key ctl-x-map "\c-b" 'list-all-buffers) 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -