Function: kcell-view:visible-label

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

Signature

(kcell-view:visible-label &optional POS)

Documentation

Return the first visible label string of cell preceding optional POS or point.

If labels are off, return cell's idstamp as a string.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:visible-label (&optional pos)
  "Return the first visible label string of cell preceding optional POS or point.
If labels are off, return cell's idstamp as a string."
  (save-excursion
    ;; Next line ensures point is in the root of the current tree if
    ;; the tree is at all hidden.
    (kotl-mode:beginning-of-line)
    (kcell-view:label pos)))