Function: avy-action-kill-move

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

Signature

(avy-action-kill-move PT)

Documentation

Kill sexp at PT and move there.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-action-kill-move (pt)
  "Kill sexp at PT and move there."
  (goto-char pt)
  (avy-forward-item)
  (kill-region pt (point))
  (message "Killed: %s" (current-kill 0))
  (point))