Function: gbut:help
gbut:help is an interactive and byte-compiled function defined in
hbut.el.
Signature
(gbut:help LABEL)
Documentation
Display help for Hyperbole global button with LABEL.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun gbut:help (label)
"Display help for Hyperbole global button with LABEL."
(interactive (list (hargs:read-match "Report on global button labeled: "
(mapcar #'list (gbut:label-list))
nil t nil 'hbut)))
(let* ((lbl-key (hbut:label-to-key label))
(but (hbut:get lbl-key nil (gbut:file))))
(if but
(hbut:report but)
(error "(gbut:help): No global button labeled: %s" label))))