Function: transient-scroll-up
transient-scroll-up is an interactive and byte-compiled function
defined in transient.el.gz.
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 /usr/src/emacs/lisp/transient.el.gz
;;;; 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)))