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