Function: hypb:window-list

hypb:window-list is a byte-compiled function defined in hypb.el.

Signature

(hypb:window-list &optional MINIBUFFER-FLAG)

Documentation

Return a list of Lisp window objects for all Emacs windows in selected frame.

Optional first arg MINIBUFFER-FLAG t means include the minibuffer window in the list, even if it is not active. If MINIBUFFER-FLAG is neither t nor nil it means to not count the minibuffer window even if it is active.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:window-list (&optional minibuffer-flag)
  "Return a list of Lisp window objects for all Emacs windows in selected frame.
Optional first arg MINIBUFFER-FLAG t means include the minibuffer window
in the list, even if it is not active.  If MINIBUFFER-FLAG is neither t
nor nil it means to not count the minibuffer window even if it is active."
  (window-list nil minibuffer-flag))