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.
14 lines
553 B
EmacsLisp
14 lines
553 B
EmacsLisp
(defvar init-ibuffer-never-show '("^\\*Messages\\*$"
|
|
"^\\*Help\\*$"
|
|
"^\\*Completions\\*$"
|
|
"^\\*Backtrace\\*$"
|
|
"^\\*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)
|