Function: transient-forward-button

transient-forward-button is an interactive and byte-compiled function defined in transient.el.

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 ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(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)))