Variable: zone-ignored-buffers
zone-ignored-buffers is a variable defined in zone.el.gz.
Value
("\\` " zone--buffer-empty-p special-mode image-mode authinfo-mode
zone--buffer-encrypted-p "\\`\\*scratch\\*\\'")
Documentation
Buffers that satisfy any of these rules are ignored as a zone buffer.
Each entry in the list must be one of the following:
+ MODE: all derived modes of the MODE are considered unacceptable,
+ REGEXP: a buffer name that matches the REGEXP is not acceptable, and
+ PRED: a buffer that satisfies the PRED, such that it returns a non-nil
value when invoked as a function with the buffer supplied as a
parameter, is considered not acceptable.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/play/zone.el.gz
(defvar zone-ignored-buffers
'( "\\`\s" ;; Hidden buffers
zone--buffer-empty-p ;; Empty buffers (not very interesting)
special-mode ;; Special/internal buffers
image-mode ;; image buffers
authinfo-mode ;; encrypted buffers
zone--buffer-encrypted-p
"\\`\\*scratch\\*\\'" ;; zone will fallback to scratch , but
;; ignore it in the first pass
)
"Buffers that satisfy any of these rules are ignored as a zone buffer.
Each entry in the list must be one of the following:
+ MODE: all derived modes of the MODE are considered unacceptable,
+ REGEXP: a buffer name that matches the REGEXP is not acceptable, and
+ PRED: a buffer that satisfies the PRED, such that it returns a non-nil
value when invoked as a function with the buffer supplied as a
parameter, is considered not acceptable.")