Function: evil-read-key
evil-read-key is a byte-compiled function defined in evil-common.el.
Signature
(evil-read-key &optional PROMPT)
Documentation
Read a key from the keyboard.
Translates it according to the input method.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-read-key (&optional prompt)
"Read a key from the keyboard.
Translates it according to the input method."
(let ((old-global-map (current-global-map))
(new-global-map (make-sparse-keymap))
(overriding-terminal-local-map nil)
(overriding-local-map evil-read-key-map)
seq char cmd)
(unwind-protect
(condition-case nil
(progn
(define-key new-global-map [menu-bar]
(lookup-key global-map [menu-bar]))
(define-key new-global-map [tab-bar]
(lookup-key global-map [tab-bar]))
(define-key new-global-map [tool-bar]
(lookup-key global-map [tool-bar]))
(setq new-global-map
(append new-global-map
(list (make-char-table 'display-table
'self-insert-command))))
(use-global-map new-global-map)
(setq seq (read-key-sequence prompt nil t)
char (aref seq 0)
cmd (key-binding seq))
(while (arrayp cmd)
(setq char (aref cmd 0)
cmd (key-binding cmd)))
(cond
((eq cmd 'self-insert-command) char)
(cmd (call-interactively cmd))
(t (user-error "No replacement character typed"))))
(quit
(when (fboundp 'evil-repeat-abort)
(evil-repeat-abort))
(signal 'quit nil)))
(use-global-map old-global-map))))