Function: kcell-view:sibling-p

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

Signature

(kcell-view:sibling-p &optional POS VISIBLE-P LBL-SEP-LEN)

Documentation

Return t if cell at optional POS or point has a successor.

With optional VISIBLE-P, consider only visible siblings.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:sibling-p (&optional pos visible-p lbl-sep-len)
  "Return t if cell at optional POS or point has a successor.
With optional VISIBLE-P, consider only visible siblings."
  (save-excursion
    (when pos
      (goto-char pos))
    (kcell-view:forward visible-p lbl-sep-len)))