Function: kcell-view:next

kcell-view:next is a byte-compiled function defined in kview.el.

Signature

(kcell-view:next &optional VISIBLE-P LBL-SEP-LEN)

Documentation

Move to start of next cell within current view.

With optional VISIBLE-P, consider only visible cells. Return t unless no next cell.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:next (&optional visible-p lbl-sep-len)
  "Move to start of next cell within current view.
With optional VISIBLE-P, consider only visible cells.
Return t unless no next cell."
  (when (kcell-view:next-kcell visible-p lbl-sep-len)
    (goto-char (kcell-view:start nil lbl-sep-len))
    t))