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-20260822.1645/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
;; Set temp label value here; real label value is set in action call below
(ibut:label-set)
(hlink 'link-to-gbut "" glink:start glink:end)))