Variable: avy-styles-alist

avy-styles-alist is a customizable variable defined in avy.el.

Value

nil

Documentation

Alist of avy-jump commands to the style for each command.

If the commands isn't on the list, avy-style is used.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defcustom avy-styles-alist nil
  "Alist of `avy-jump' commands to the style for each command.
If the commands isn't on the list, `avy-style' is used."
  :type '(alist
          :key-type (choice :tag "Command"
                            (const avy-goto-char)
                            (const avy-goto-char-2)
                            (const avy-isearch)
                            (const avy-goto-line)
                            (const avy-goto-subword-0)
                            (const avy-goto-subword-1)
                            (const avy-goto-word-0)
                            (const avy-goto-word-1)
                            (const avy-copy-line)
                            (const avy-copy-region)
                            (const avy-move-line)
                            (const avy-move-region)
                            (const avy-kill-whole-line)
                            (const avy-kill-region)
                            (const avy-kill-ring-save-whole-line)
                            (const avy-kill-ring-save-region)
                            (function :tag "Other command"))
          :value-type (choice
                       (const :tag "Pre" pre)
                       (const :tag "At" at)
                       (const :tag "At Full" at-full)
                       (const :tag "Post" post)
                       (const :tag "De Bruijn" de-bruijn)
                       (const :tag "Words" words))))