Function: avy--style-fn
avy--style-fn is a byte-compiled function defined in avy.el.
Signature
(avy--style-fn STYLE)
Documentation
Transform STYLE symbol to a style function.
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy--style-fn (style)
"Transform STYLE symbol to a style function."
(cl-case style
(pre #'avy--overlay-pre)
(at #'avy--overlay-at)
(at-full 'avy--overlay-at-full)
(post #'avy--overlay-post)
(de-bruijn #'avy--overlay-at-full)
(words #'avy--overlay-at-full)
(ignore #'ignore)
(t (error "Unexpected style %S" style))))