Reputation: 701
Hi how can I colorize the emacs buffer menu, I'd like to have different colors for different type of files. That should make it easier to navigate a large list of buffers.
Upvotes: 5
Views: 775
Reputation: 701
I discovered ibuffer which had all the features i needed .. thanks
http://www.emacswiki.org/emacs/IbufferMode
Upvotes: 0
Reputation: 618
Or you can find your best Keybind:
(global-set-key (kbd "C-x C-b") 'buffer-menu)
instead C-x C-b
if you have another better choice.
Upvotes: 1
Reputation: 26539
Try M-xibuffer
. It can serve as a replacement for list-buffers
(C-x C-b), with a wealth of extra functionalities for filtering, sorting, etc. After invocation, use C-h m for more details.
Upvotes: 7