Function: hycontrol-toggle-help
hycontrol-toggle-help is an interactive and byte-compiled function
defined in hycontrol.el.
Signature
(hycontrol-toggle-help)
Documentation
Toggle whether HyControl displays key binding help in the minibuffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-toggle-help ()
"Toggle whether HyControl displays key binding help in the minibuffer."
(interactive)
(setq hycontrol-help-flag (not hycontrol-help-flag))
(unless (and hycontrol-help-flag (called-interactively-p 'interactive))
(message "(HyControl): Minibuffer help is off; use {%s} to turn it on"
(hycontrol-help-key-description))))