Variable: evil-shift-width

evil-shift-width is a customizable variable defined in evil-vars.el.

Value

4

Documentation

The number of columns by which a line is shifted. This applies to the shifting operators > (evil-shift-right) and < (evil-shift-left).

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-shift-width 4
  "\\<evil-normal-state-map>
The number of columns by which a line is shifted.
This applies to the shifting operators \\[evil-shift-right] and \
\\[evil-shift-left]."
  :type 'integer
  :safe #'integerp
  :group 'evil)