Function: evil-scroll-left

evil-scroll-left is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-scroll-left COUNT)

Documentation

Scroll the window COUNT half-screenwidths to the left.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-scroll-left (count)
  "Scroll the window COUNT half-screenwidths to the left."
  :repeat nil
  :keep-visual t
  (interactive "p")
  (evil-with-hproject-point-on-window
    (scroll-right (* count (/ (window-width) 2)))))