Function: evil--in-emacs-state

evil--in-emacs-state is a byte-compiled function defined in evil-integration.el.

Signature

(evil--in-emacs-state ORIG-FUN &rest ARGS)

Documentation

Temporarily enter Emacs-state and apply ORIG-FUN to ARGS.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-integration.el
(defun evil--in-emacs-state (orig-fun &rest args)
  "Temporarily enter Emacs-state and apply ORIG-FUN to ARGS."
  (evil-with-state emacs (apply orig-fun args)))