Function: evil-deactivate-input-method

evil-deactivate-input-method is a byte-compiled function defined in evil-core.el.

Signature

(evil-deactivate-input-method)

Documentation

Disable input method in all states.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-core.el
(defun evil-deactivate-input-method ()
  "Disable input method in all states."
  (let (input-method-activate-hook
        input-method-deactivate-hook)
    (when (and evil-local-mode evil-state)
      (setq evil-input-method nil))))