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