Function: transient-forward-button
transient-forward-button is an interactive and byte-compiled function
defined in transient.el.gz.
Signature
(transient-forward-button N)
Documentation
Move to the next button in transient's menu buffer.
See forward-button for information about N.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/transient.el.gz
(defun transient-forward-button (n)
"Move to the next button in transient's menu buffer.
See `forward-button' for information about N."
(interactive "p")
(with-selected-window transient--window
(forward-button n t)
(transient--button-move-echo)))