Function: kvspec:show-lines-per-cell

kvspec:show-lines-per-cell is a byte-compiled function defined in kvspec.el.

Signature

(kvspec:show-lines-per-cell NUM)

Documentation

Show NUM lines per visible cell; 0 means show all lines in each visible cell.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kvspec.el
(defun kvspec:show-lines-per-cell (num)
  "Show NUM lines per visible cell; 0 means show all lines in each visible cell."
  (if (or (not (integerp num)) (< num 0))
      (error "(kvspec:show-lines-per-cell): Invalid lines per cell, `%d'" num))
  (kview:set-attr kotl-kview 'lines-to-show num)
  ;; Now show NUM lines in cells.
  (kview:map-tree (lambda (_kview)
		    (kcell-view:expand (point))
		    (kvspec:show-lines-this-cell num)) kotl-kview t t))