Variable: aw-translate-char-function
aw-translate-char-function is a customizable variable defined in
ace-window.el.
Value
identity
Documentation
Function to translate user input key into another key.
For example, to make SPC do the same as ?a, use
(lambda (c) (if (= c 32) ?a c)).
Source Code
;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
(defcustom aw-translate-char-function #'identity
"Function to translate user input key into another key.
For example, to make SPC do the same as ?a, use
\(lambda (c) (if (= c 32) ?a c))."
:type '(choice
(const :tag "Off" #'identity)
(const :tag "Ignore Case" #'downcase)
(function :tag "Custom")))