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