Function: ibtypes::glink
ibtypes::glink is a byte-compiled function defined in hibtypes.el.
Signature
(ibtypes::glink)
Documentation
At point, activates a link to a global button.
This executes the linked to global button's action in the context of the current buffer.
Recognizes the format '<glink:' button_label '>', e.g. <glink: open todos>.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hibtypes.el
(defib glink ()
"At point, activates a link to a global button.
This executes the linked to global button's action in the context
of the current buffer.
Recognizes the format '<glink:' button_label '>',
e.g. <glink: open todos>."
(progn
(ibut:label-set "temp") ;; Real value set in action call below
(hlink 'link-to-gbut "" glink:start glink:end)))