Function: evil-scroll-line-up
evil-scroll-line-up is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-scroll-line-up COUNT)
Documentation
Scroll the window COUNT lines upwards.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
;; scrolling
(evil-define-command evil-scroll-line-up (count)
"Scroll the window COUNT lines upwards."
:repeat nil
:keep-visual t
(interactive "p")
(let (scroll-preserve-screen-position) (scroll-down count)))