Function: evil-scroll-top-line-to-bottom
evil-scroll-top-line-to-bottom is an interactive and byte-compiled
function defined in evil-commands.el.
Signature
(evil-scroll-top-line-to-bottom COUNT)
Documentation
Scroll the line right above the window, or line COUNT to the bottom of the window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-scroll-top-line-to-bottom (count)
"Scroll the line right above the window,
or line COUNT to the bottom of the window."
:repeat nil
:keep-visual t
(interactive "<c>")
(unless count
(goto-char (window-start))
(evil-first-non-blank))
(evil-scroll-line-to-bottom count))