Function: vcursor-scroll-down
vcursor-scroll-down is an interactive and byte-compiled function
defined in vcursor.el.gz.
Signature
(vcursor-scroll-down &optional N)
Documentation
Scroll down the vcursor window ARG lines or near full screen if none.
The vcursor will always appear in an unselected window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-scroll-down (&optional n)
"Scroll down the vcursor window ARG lines or near full screen if none.
The vcursor will always appear in an unselected window."
(interactive "P")
(vcursor-window-funcall #'scroll-down n))