Function: vcursor-scroll-up

vcursor-scroll-up is an interactive and byte-compiled function defined in vcursor.el.gz.

Signature

(vcursor-scroll-up &optional N)

Documentation

Scroll up 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-up (&optional n)
  "Scroll up 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-up n))