Function: vip-scroll
vip-scroll is an interactive and byte-compiled function defined in
vip.el.gz.
Signature
(vip-scroll ARG)
Documentation
Scroll to next screen.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
;; scrolling
(defun vip-scroll (arg)
"Scroll to next screen."
(interactive "p")
(if (> arg 0)
(while (> arg 0)
(scroll-up)
(setq arg (1- arg)))
(while (> 0 arg)
(scroll-down)
(setq arg (1+ arg)))))