Variable: evil-ex-substitute-case

evil-ex-substitute-case is a customizable variable defined in evil-vars.el.

Value

nil

Documentation

The case behaviour of the search command.

Smart case means that the pattern is case sensitive if and only if it contains an upper case letter, otherwise it is case insensitive. If nil then the setting of evil-ex-search-case is used.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-ex-substitute-case nil
  "The case behaviour of the search command.
Smart case means that the pattern is case sensitive if and only
if it contains an upper case letter, otherwise it is case
insensitive. If nil then the setting of `evil-ex-search-case' is
used."
  :type '(radio (const :tag "Same as interactive search." nil)
                (const :tag "Case sensitive." sensitive)
                (const :tag "Case insensitive." insensitive)
                (const :tag "Smart case." smart))
  :group 'evil)