Function: kcell-view:indent
kcell-view:indent is a byte-compiled function defined in kview.el.
Signature
(kcell-view:indent &optional POS LBL-SEP-LEN)
Documentation
Return indentation of cell at optional POS or point.
Optional LBL-SEP-LEN is the view-specific length of the separator between a cell's label and the start of its contents.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kcell-view:indent (&optional pos lbl-sep-len)
"Return indentation of cell at optional POS or point.
Optional LBL-SEP-LEN is the view-specific length of the separator between a
cell's label and the start of its contents."
(+ (save-excursion
(kcell-view:to-label-end pos)
(current-column))
(or lbl-sep-len (kview:label-separator-length kotl-kview)
(length kview:default-label-separator))))