You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
.emacs.d/config/ibuffer/config-ibuffer-never-show.el

14 lines
559 B
EmacsLisp

2 years ago
(defvar config-ibuffer-never-show '("^\\*Messages\\*$"
"^\\*Help\\*$"
"^\\*Completions\\*$"
"^\\*Backtrace\\*$"
"^\\*Async-native-compile-log\\*$"
"^\\*Native-compile-Log\\*$"
"^\\*Warnings\\*$"))
2 years ago
(mapc (lambda (p)
(add-to-list 'ibuffer-never-show-predicates p))
config-ibuffer-never-show)
(provide 'config-ibuffer-never-show)