Function: kotl-mode:tail-cell

kotl-mode:tail-cell is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:tail-cell)

Documentation

Move point to start of last visible cell at same level as current cell.

Return t if successful. If at tail 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:tail-cell ()
  "Move point to start of last visible cell at same level as current cell.
Return t if successful.
If at tail 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:forward t lbl-sep-len)
      (setq moved t))
    moved))