Variable: evil-ex-search-case

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

Value

smart

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.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-ex-search-case 'smart
  "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."
  :type '(radio (const :tag "Case sensitive." sensitive)
                (const :tag "Case insensitive." insensitive)
                (const :tag "Smart case." smart))
  :group 'evil)