Function: vi-scroll-down-window

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

Signature

(vi-scroll-down-window COUNT)

Documentation

Scrolls down 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-down-window (count)
  "Scrolls down 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-up vi-scroll-amount))