Variable: hycontrol-maximum-units
hycontrol-maximum-units is a customizable variable defined in
hycontrol.el.
Value
1000
Documentation
Maximum units setting allowed for hycontrol commands.
The unit counter resets to the last digit entered whenever this value is exceeded.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defcustom hycontrol-maximum-units 1000
"Maximum units setting allowed for hycontrol commands.
The unit counter resets to the last digit entered whenever this
value is exceeded."
:type '(integer :match (lambda (_widget value)
(and (integerp value) (> value 0)
(<= value (max 1000 (display-pixel-width))))))
:group 'hyperbole-screen)