Function: evil-scroll-page-down
evil-scroll-page-down is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-scroll-page-down COUNT)
Documentation
Scroll the window COUNT pages downwards.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-scroll-page-down (count)
"Scroll the window COUNT pages downwards."
:repeat nil
:keep-visual t
(interactive "p")
(evil-ensure-column
(dotimes (i count)
(condition-case err
(scroll-up nil)
(end-of-buffer
(if (and (eobp) (zerop i))
(signal (car err) (cdr err))
(goto-char (point-max))))))))