Function: vi-scroll-up-window

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

Signature

(vi-scroll-up-window COUNT)

Documentation

Scrolls up window COUNT lines.

If COUNT is nil (actually, non-integer), scrolls default amount. The given COUNT is remembered for future scrollings.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-scroll-up-window (count)
  "Scrolls up window COUNT lines.
If COUNT is nil (actually, non-integer), scrolls default amount.
The given COUNT is remembered for future scrollings."
  (interactive "P")
  (if (integerp count)
      (setq vi-scroll-amount count))
  (scroll-down vi-scroll-amount))