Function: kotl-mode:first-sibling
kotl-mode:first-sibling is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:first-sibling)
Documentation
Move point to the first sibling of the present cell.
Leave point at the start of the cell or at its present position if it is already within the first sibling cell.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:first-sibling ()
"Move point to the first sibling of the present cell.
Leave point at the start of the cell or at its present position if it is
already within the first sibling cell."
(interactive)
(kotl-mode:maintain-region-highlight)
(let ((lbl-sep-len (kview:label-separator-length kotl-kview)))
(when (save-excursion (kcell-view:backward nil lbl-sep-len))
;; Enable user to return to this previous position if desired.
(push-mark nil 'no-msg))
(while (kcell-view:backward nil lbl-sep-len))))