Variable: avy-style

avy-style is a customizable variable defined in avy.el.

Value

at-full

Documentation

The default method of displaying the overlays.

Use avy-styles-alist to customize this per-command.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defcustom avy-style 'at-full
  "The default method of displaying the overlays.
Use `avy-styles-alist' to customize this per-command."
  :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)))