Function: evil-read-quoted-char
evil-read-quoted-char is an interactive and byte-compiled function
defined in evil-common.el.
Signature
(evil-read-quoted-char)
Documentation
Command that calls read-quoted-char.
This command can be used wherever read-quoted-char is required
as a command. Its main use is in the evil-read-key-map.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-read-quoted-char ()
"Command that calls `read-quoted-char'.
This command can be used wherever `read-quoted-char' is required
as a command. Its main use is in the `evil-read-key-map'."
(interactive)
(read-quoted-char))