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.
Colors in emacs buffer list
I discovered ibuffer which had all the features i needed .. thanks
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.
See EmacsWiki, it contains some links to enhanced buffer menus.
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.
I discovered ibuffer which had all the features i needed .. thanks
© 2022 - 2024 — McMap. All rights reserved.
h
for help is quicker thanC-h m
– Mayapple