Function: avy-action-yank

avy-action-yank is a byte-compiled function defined in avy.el.

Signature

(avy-action-yank PT)

Documentation

Yank sexp starting at PT at the current point.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-action-yank (pt)
  "Yank sexp starting at PT at the current point."
  (avy-action-copy pt)
  (yank)
  t)