Function: hycontrol-windows-grid-by-file-list
hycontrol-windows-grid-by-file-list is a byte-compiled function
defined in hycontrol.el.
Signature
(hycontrol-windows-grid-by-file-list GRID-SIZE FILES)
Documentation
Display an abs(GRID-SIZE) window grid showing a subset of a list of FILES.
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-file-list (grid-size files)
"Display an abs(GRID-SIZE) window grid showing a subset of a list of FILES.
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 files)
(error "(hycontrol-windows-grid-by-file-list): No matching files")
(hycontrol-make-windows-grid
(when grid-size (hycontrol-windows-grid-validate grid-size))
(nreverse (mapcar #'find-file (reverse files))))))