Variable: evil-magic
evil-magic is a customizable variable defined in evil-vars.el.
Value
t
Documentation
Meaning which characters in a pattern are magic.
The meaning of those values is the same as in Vim. Note that it
only has influence if the Evil search module is chosen in
evil-search-module.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-magic t
"Meaning which characters in a pattern are magic.
The meaning of those values is the same as in Vim. Note that it
only has influence if the Evil search module is chosen in
`evil-search-module'."
:group 'evil
:type '(radio (const :tag "Very magic." :value very-magic)
(const :tag "Magic" :value t)
(const :tag "Nomagic" :value nil)
(const :tag "Very nomagic" :value very-nomagic)))