Function: hycontrol-windows-grid-by-buffer-list
hycontrol-windows-grid-by-buffer-list is a byte-compiled function
defined in hycontrol.el.
Signature
(hycontrol-windows-grid-by-buffer-list GRID-SIZE BUFFERS)
Documentation
Display an abs(GRID-SIZE) window grid showing a subset of a list of BUFFERS.
If GRID-SIZE is nil, prompt for grid size. The digits of GRID-SIZE specify the number of rows (leftmost) by columns (rightmost) of the grid.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-windows-grid-by-buffer-list (grid-size buffers)
"Display an abs(GRID-SIZE) window grid showing a subset of a list of BUFFERS.
If GRID-SIZE is nil, prompt for grid size. The digits of
GRID-SIZE specify the number of rows (leftmost) by
columns (rightmost) of the grid."
(if (null buffers)
(error "(hycontrol-windows-grid-by-buffer-list): No matching buffers")
(hycontrol-make-windows-grid
(when grid-size (hycontrol-windows-grid-validate grid-size))
(mapc #'switch-to-buffer (reverse buffers)))))