Function: evil-normal-state
evil-normal-state is an interactive and byte-compiled function defined
in evil-states.el.
Signature
(evil-normal-state &optional ARG)
Documentation
Enable Normal state. Disable with negative ARG.
If ARG is nil, don't display a message in the echo area.
AKA "Command" state.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-states.el
;;; Normal state
(evil-define-state normal
"Normal state.
AKA \"Command\" state."
:tag " <N> "
:enable (motion)
(cond
((evil-normal-state-p)
(overwrite-mode -1)
(add-hook 'post-command-hook #'evil-normal-post-command nil t))
(t
(remove-hook 'post-command-hook #'evil-normal-post-command t))))