Function: kotl-mode:head-cell
kotl-mode:head-cell is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:head-cell)
Documentation
Move point to the start of first visible cell at same level as current cell.
If at head cell already, do nothing and return nil.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:head-cell ()
"Move point to the start of first visible cell at same level as current cell.
If at head cell already, do nothing and return nil."
(interactive "p")
(kotl-mode:maintain-region-highlight)
(let ((moved)
(lbl-sep-len (kview:label-separator-length kotl-kview)))
(while (kcell-view:backward t lbl-sep-len)
(setq moved t))
moved))