Function: hydra--hint-from-matrix-1
hydra--hint-from-matrix-1 is a byte-compiled function defined in
hydra.el.
Signature
(hydra--hint-from-matrix-1 BODY HEADS-MATRIX)
Source Code
;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra--hint-from-matrix-1 (body heads-matrix)
(let* ((first-heads-col (nth 0 heads-matrix))
(last-row-index (- (length first-heads-col) 1))
(lines nil))
(dolist (row-index (number-sequence 0 last-row-index))
(let ((heads-in-row (mapcar
(lambda (heads) (nth row-index heads))
heads-matrix)))
(push (hydra--hint-row heads-in-row body)
lines)))
(nreverse lines)))