Colors in the emacs buffer list

Hi, how can I colorize the emacs buffer menu, I would like to have different colors for different types of files. This should facilitate navigation through a large list of buffers.

+5
source share
4 answers

I discovered ibuffer that had all the features I need .. thanks

http://www.emacswiki.org/emacs/IbufferMode

0
source

Give it a try M-x ibuffer. It can serve as a replacement list-buffers( C-x C-b) with many additional functions for filtering, sorting, etc. After the call, use C-h mfor more details.

+7
source
+3

Keybind:

(-set-key (kbd "C-x C-b" ) ' )

instead C-x C-b, if you have another better choice.

+1
source

All Articles