Function: hycontrol-windows-grid-buffer-list

hycontrol-windows-grid-buffer-list is a byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-windows-grid-buffer-list)

Documentation

Return buffer list for grid.

Buffers are either any marked items in Dired, Buffer Menu or IBuffer mode or the existing frame's buffer list.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-windows-grid-buffer-list ()
  "Return buffer list for grid.
Buffers are either any marked items in Dired, Buffer Menu or
IBuffer mode or the existing frame's buffer list."
  ;; Get the list of marked items if in an item list buffer and
  ;; convert items to buffers.
  ;; Return either non-nil items or frame's full buffer list.
  (or (hycontrol-windows-grid-marked-items)
      (buffer-list (selected-frame))))