Variable: ido-ignore-buffers

ido-ignore-buffers is a customizable variable defined in ido.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/ido.el.gz
(defcustom ido-ignore-buffers
  '("\\` ")
  "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)))