Variable: ibuffer-never-show-predicates

ibuffer-never-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 not to 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 not be shown.

Source Code

;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
(defcustom ibuffer-never-show-predicates nil
  "A list of predicates (a regexp or function) for buffers not to 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 not be shown."
  :type '(repeat (choice regexp function))
  :require 'ibuf-ext
  :group 'ibuffer)