Variable: iswitchb-buffer-ignore

iswitchb-buffer-ignore is a customizable variable defined in iswitchb.el.gz.

Value

("^ ")

Documentation

List of regexps or functions matching buffer names to ignore.

For example, traditional behavior is not to list buffers whose names begin with a space, for which the regexp is ^ . See the source file for example functions that filter buffer names.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defcustom iswitchb-buffer-ignore
  '("^ ")
  "List of regexps or functions matching buffer names to ignore.
For example, traditional behavior is not to list buffers whose names begin
with a space, for which the regexp is `^ '.  See the source file for
example functions that filter buffer names."
  :type '(repeat (choice regexp function)))