Function: ibut:act-label
ibut:act-label is an interactive and byte-compiled function defined in
hbut.el.
Signature
(ibut:act-label LABEL)
Documentation
Activate Hyperbole implicit button with <[LABEL]> from the current buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun ibut:act-label (label)
"Activate Hyperbole implicit button with <[LABEL]> from the current buffer."
(interactive (list (hargs:read-match "Activate implicit button labeled: "
(ibut:alist)
nil t nil 'ibut)))
(let* ((lbl-key (hbut:label-to-key label))
(but (ibut:get lbl-key)))
(if but
(hbut:act but)
(hypb:error "(ibut:act-label): No implicit button labeled: `%s'" label))))