Function: avy-action-teleport

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

Signature

(avy-action-teleport PT)

Documentation

Kill sexp starting on PT and yank into the current location.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-action-teleport (pt)
  "Kill sexp starting on PT and yank into the current location."
  (avy-action-kill-stay pt)
  (select-window
   (cdr
    (ring-ref avy-ring 0)))
  (save-excursion
    (yank))
  t)