mirror of
https://github.com/abo-abo/avy.git
synced 2025-10-13 13:33:03 +00:00
Improve docstrings
* avy.el (avy-keys): Update. (avy-background-face): Update.
This commit is contained in:
parent
1d1e4b62e8
commit
465d5f2f9c
13
avy.el
13
avy.el
@ -57,13 +57,13 @@
|
||||
(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 (a-z, A-Z, 0-9, punctuation, etc.) or a symbol denoting a
|
||||
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 exists in order to visualize the key
|
||||
`avy-key-to-char-alist' must exist in order to visualize the key
|
||||
in the avy overlays."
|
||||
:type '(repeat :tag "Keys" (choice (character :tag "char")
|
||||
(symbol :tag "non-printing key"))))
|
||||
(symbol :tag "non-printing key"))))
|
||||
|
||||
(defcustom avy-keys-alist nil
|
||||
"Alist of avy-jump commands to `avy-keys' overriding the default `avy-keys'."
|
||||
@ -181,10 +181,9 @@ For example, to make SPC do the same as ?a, use
|
||||
(down . ?▼)
|
||||
(prior . ?△)
|
||||
(next . ?▽))
|
||||
"An alist from non-character keys to chars used to represent
|
||||
them in the avy overlays. This alist must contain all keys used
|
||||
in `avy-keys' which are no self-inserting keys and thus aren't
|
||||
read as characters.")
|
||||
"An alist from non-character keys to printable chars used in avy overlays.
|
||||
This alist must contain all keys used in `avy-keys' which are not
|
||||
self-inserting keys and thus aren't read as characters.")
|
||||
|
||||
;;* Internals
|
||||
;;** Tree
|
||||
|
Loading…
x
Reference in New Issue
Block a user