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/init/ibuffer/init-ibuffer-never-show.el

12 lines
518 B
EmacsLisp

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