Variable: avy-translate-char-function

avy-translate-char-function is a variable defined in avy.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/avy-20241101.1357/avy.el
(defvar avy-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)).")