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