Variable: evil-highlight-closing-paren-at-point-states
evil-highlight-closing-paren-at-point-states is a customizable
variable defined in evil-vars.el.
Value
(not emacs insert replace)
Documentation
The states in which the closing parenthesis at point should be highlighted.
All states listed here highlight the closing parenthesis at
point (which is Vim's default behavior). All others highlight the
parenthesis before point (which is Emacs default behavior). If
this list contains the symbol not then its meaning is inverted,
i.e. all states listed here highlight the closing parenthesis
before point.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-highlight-closing-paren-at-point-states
'(not emacs insert replace)
"The states in which the closing parenthesis at point should be highlighted.
All states listed here highlight the closing parenthesis at
point (which is Vim's default behavior). All others highlight the
parenthesis before point (which is Emacs default behavior). If
this list contains the symbol `not' then its meaning is inverted,
i.e. all states listed here highlight the closing parenthesis
before point."
:type '(repeat symbol)
:group 'evil)