Function: evil-scroll-right
evil-scroll-right is an interactive and byte-compiled function defined
in evil-commands.el.
Signature
(evil-scroll-right COUNT)
Documentation
Scroll the window COUNT half-screenwidths to the right.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-scroll-right (count)
"Scroll the window COUNT half-screenwidths to the right."
:repeat nil
:keep-visual t
(interactive "p")
(evil-with-hproject-point-on-window
(scroll-left (* count (/ (window-width) 2)))))