jagguli
jagguli

Reputation: 701

Colors in emacs buffer list

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

Answers (4)

jagguli
jagguli

Reputation: 701

I discovered ibuffer which had all the features i needed .. thanks

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

Upvotes: 0

staticor
staticor

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

huaiyuan
huaiyuan

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

choroba
choroba

Reputation: 241988

See EmacsWiki, it contains some links to enhanced buffer menus.

Upvotes: 3

Related Questions