Function: kview:label-function

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

Signature

(kview:label-function KVIEW)

Documentation

Return function which will return display label for current cell in KVIEW.

Function signature is: (func prev-label &optional child-p), where prev-label is the display label of the cell preceding the current one and child-p is non-nil if cell is to be the child of the preceding cell.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defun kview:label-function (kview)
  "Return function which will return display label for current cell in KVIEW.
Function signature is: (func prev-label &optional child-p), where prev-label
is the display label of the cell preceding the current one and child-p is
non-nil if cell is to be the child of the preceding cell."
  (kview:get-attr kview 'label-function))