Function: vi-forward-windowful
vi-forward-windowful is an interactive and byte-compiled function
defined in vi.el.gz.
Signature
(vi-forward-windowful COUNT)
Documentation
Forward COUNT windowfuls. Default is one.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-forward-windowful (count)
"Forward COUNT windowfuls. Default is one."
(interactive "p")
; (set-mark-command nil)
(while (> count 0)
(scroll-up nil)
(setq count (1- count))))