Variable: ibuffer-always-show-predicates
ibuffer-always-show-predicates is a customizable variable defined in
ibuf-ext.el.gz.
Value
nil
Documentation
A list of predicates (a regexp or function) for buffers to always display.
If a regexp, then it will be matched against the buffer's name. If a function, it will be called with the buffer as an argument, and should return non-nil if this buffer should be shown. Note that buffers matching one of these predicates will be shown regardless of any active filters in this buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
(defcustom ibuffer-always-show-predicates nil
"A list of predicates (a regexp or function) for buffers to always display.
If a regexp, then it will be matched against the buffer's name.
If a function, it will be called with the buffer as an argument, and
should return non-nil if this buffer should be shown.
Note that buffers matching one of these predicates will be shown
regardless of any active filters in this buffer."
:type '(repeat (choice regexp function))
:group 'ibuffer)