Variable: avy-orders-alist

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

Value

((avy-goto-char . avy-order-closest))

Documentation

Alist of candidate ordering functions.

Usually, candidates appear in their point position order.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defcustom avy-orders-alist '((avy-goto-char . avy-order-closest))
  "Alist of candidate ordering functions.
Usually, candidates appear in their point position order."
  :type `(alist
          :key-type ,avy--key-type
          :value-type function))