Function: kotl-mode:last-sibling

kotl-mode:last-sibling is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:last-sibling)

Documentation

Move point to the last sibling of the present cell.

Leave point at the start of the cell or at its present position if it is already within the last sibling cell.

Key Bindings

Source Code

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