Variable: avy-keys
avy-keys is a customizable variable defined in avy.el.
Value
(97 115 100 102 103 104 106 107 108)
Documentation
Default keys for jumping.
Any key is either a character representing a self-inserting
key (letters, digits, punctuation, etc.) or a symbol denoting a
non-printing key like an arrow key (left, right, up, down). For
non-printing keys, a corresponding entry in
avy-key-to-char-alist must exist in order to visualize the key
in the avy overlays.
If avy-style is set to words, make sure there are at least three
keys different than the following: a, e, i, o, u, y
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defcustom avy-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)
"Default keys for jumping.
Any key is either a character representing a self-inserting
key (letters, digits, punctuation, etc.) or a symbol denoting a
non-printing key like an arrow key (left, right, up, down). For
non-printing keys, a corresponding entry in
`avy-key-to-char-alist' must exist in order to visualize the key
in the avy overlays.
If `avy-style' is set to words, make sure there are at least three
keys different than the following: a, e, i, o, u, y"
:type '(repeat :tag "Keys" (choice
(character :tag "char")
(symbol :tag "non-printing key"))))