Variable: hycontrol-display-buffer-predicate-list

hycontrol-display-buffer-predicate-list is a variable defined in hycontrol.el.

Value

(hypb:buffer-file-name)

Documentation

List of single buffer/name predicates.

If any predicate returns non-nil for a buffer, include that buffer in the list to display in the windows created by hycontrol-windows-grid.

A predicate may be either a function that takes a single buffer argument or a boolean expression, in which case the expression is evaluated with the buffer argument as the current buffer, e.g. (eq major-mode 'c-mode).

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defvar hycontrol-display-buffer-predicate-list
  ;; Display only buffers attached to files.
  (list #'hypb:buffer-file-name)
  "List of single buffer/name predicates.
If any predicate returns non-nil for a buffer, include that buffer in
the list to display in the windows created by `hycontrol-windows-grid'.

A predicate may be either a function that takes a single buffer
argument or a boolean expression, in which case the expression is
evaluated with the buffer argument as the current buffer, e.g. (eq
major-mode \\='c-mode).")