Function: hypb:count-visible-windows

hypb:count-visible-windows is an autoloaded and byte-compiled function defined in hypb.el.

Signature

(hypb:count-visible-windows)

Documentation

Return the number of visible, non-minibuffer windows across all frames.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;;;###autoload
(defun hypb:count-visible-windows ()
  "Return the number of visible, non-minibuffer windows across all frames."
  (apply '+ (mapcar (lambda (frm) (length (window-list frm)))
		    (visible-frame-list))))