Function: transient-scroll-down
transient-scroll-down is an interactive and byte-compiled function
defined in transient.el.
Signature
(transient-scroll-down &optional ARG)
Documentation
Scroll text of transient's menu window down ARG lines.
If ARG is nil scroll near full screen. This is a wrapper
around scroll-down-command (which see).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient-scroll-down (&optional arg)
"Scroll text of transient's menu window down ARG lines.
If ARG is nil scroll near full screen. This is a wrapper
around `scroll-down-command' (which see)."
(interactive "^P")
(with-selected-window transient--window
(scroll-down-command arg)))