Variable: evil-ex-visual-char-range

evil-ex-visual-char-range is a customizable variable defined in evil-vars.el.

Value

nil

Documentation

Type of default ex range in visual char state.

If non-nil the default range when starting an ex command from character visual state is `<,> otherwise it is <,'>. In the first case the ex command will be passed a region covering only the visual selection. In the second case the passed region will be extended to contain full lines.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-ex-visual-char-range nil
  "Type of default ex range in visual char state.
If non-nil the default range when starting an ex command from
character visual state is `<,`> otherwise it is '<,'>. In the
first case the ex command will be passed a region covering only
the visual selection. In the second case the passed region will
be extended to contain full lines."
  :group 'evil
  :type 'boolean)