Function: hui:menu-display-help
hui:menu-display-help is an interactive and byte-compiled function
defined in hui-mini.el.
Signature
(hui:menu-display-help &optional HELP-STR)
Documentation
Display optional HELP-STR for a Hyperbole minibuffer menu.
If HELP-STR is nil, display help for the current menu. If HELP-STR is already displayed in a help window, instead quit from the help window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hui-mini.el
(defun hui:menu-display-help (&optional help-str)
"Display optional HELP-STR for a Hyperbole minibuffer menu.
If HELP-STR is nil, display help for the current menu. If HELP-STR is
already displayed in a help window, instead quit from the help window."
(interactive)
(unless (stringp help-str)
(setq help-str (hui:menu-get-help-string)))
(hui:menu-help help-str))