Function: actypes::button-series
actypes::button-series is an interactive and byte-compiled function
defined in hactypes.el.
Signature
(actypes::button-series BUTS)
Documentation
Combine multiple buttons given by their labels into one series of buttons.
Local buttons are preferred over global buttons.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact button-series (buts)
"Combine multiple buttons given by their labels into one series of buttons.
Local buttons are preferred over global buttons."
(interactive
(list (completing-read-multiple "Button labels: " (hactypes:buffer-button-list)
nil t)))
(dolist (b buts)
(let ((but (hbut:get (hbut:label-to-key b))))
(if but
(hbut:act but)
(gbut:act b)))))