Variable: hyperbole-mode-hook
hyperbole-mode-hook is a customizable variable defined in
hyperbole.el.
Value
nil
Documentation
Hook run after entering or leaving hyperbole-mode(var)/hyperbole-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyperbole.el
;;;###autoload
(define-minor-mode hyperbole-mode
"Toggle Hyperbole global minor mode with \\[hyperbole-mode].
Hyperbole is the Everyday Hypertextual Information Manager.
When Hyperbole mode is enabled, the `hyperbole-mode' variable
is non-nil, Hyperbole menus are enabled, as are Hyperbole keys.
Invoke the Hyperbole minibuffer menu with \\[hyperbole]. See the
Info documentation at \"(hyperbole)Top\".
\\{hyperbole-mode-map}"
:global t
:lighter hyperbole-mode-lighter
(if hyperbole-mode
(hyperbole--enable-mode)
(hyperbole--disable-mode)))