Function: evil-paste-last-insertion-and-stop-insert
evil-paste-last-insertion-and-stop-insert is an interactive and
byte-compiled function defined in evil-commands.el.
Signature
(evil-paste-last-insertion-and-stop-insert)
Documentation
Paste last insertion and change to normal state.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-paste-last-insertion-and-stop-insert ()
"Paste last insertion and change to normal state."
(interactive)
(evil-paste-last-insertion)
(evil-normal-state))