Function: evil-shift-right-line

evil-shift-right-line is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-shift-right-line COUNT)

Documentation

Shift the current line COUNT times to the right.

The text is shifted to the nearest multiple of evil-shift-width. Like evil-shift-right but always works on the current line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-shift-right-line (count)
  "Shift the current line COUNT times to the right.
The text is shifted to the nearest multiple of
`evil-shift-width'. Like `evil-shift-right' but always works on
the current line."
  (interactive "<c>")
  (evil-shift-right (line-beginning-position) (line-beginning-position 2) count t))