Function: hywiki-get-buffers-in-windows

hywiki-get-buffers-in-windows is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-get-buffers-in-windows &rest FRAMES)

Documentation

Return the set of HyWiki buffers in all windows across all live frames.

Or include only those in optional rest of arguments FRAMES. Always exclude minibuffer windows.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-get-buffers-in-windows (&rest frames)
  "Return the set of HyWiki buffers in all windows across all live frames.
Or include only those in optional rest of arguments FRAMES.
Always exclude minibuffer windows."
  (apply #'set:create
	 (apply #'nconc (mapcar (lambda (frame)
				  (when (frame-live-p frame)
				    (mapcar #'window-buffer
					    (window-list frame :no-minibuf))))
				(or frames (frame-list))))))