toggle-input-method を使用することで、入力メソッドが有効なときに入力メソッドを無効にすることができます。
toggle-input-method
しかし、入力メソッドの状態にかかわらず、それを無効にしたい場合もあります。 私はそれのための機能を見つけることができませんでした。どうしたらいいですか?
(deactivate-input-method)
disable
M-x find-function toggle-input-method to read its source code,
M-x find-function toggle-input-method
(defun toggle-off-input-method () (interactive) (if current-input-method (deactivate-input-method)))