Variable: kview:default-label-min-width
kview:default-label-min-width is a customizable variable defined in
kview.el.
Value
4
Documentation
Minimum width to which to pad labels in a kotl view.
Labels are padded with spaces on the left. Default value is 4.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kview.el
(defcustom kview:default-label-min-width 4
"Minimum width to which to pad labels in a kotl view.
Labels are padded with spaces on the left. Default value is 4."
:type '(integer :match (lambda (_widget value)
(and (integerp value) (> value 1) (<= value 99))))
:group 'hyperbole-koutliner)