diff --git a/avy.el b/avy.el index 88bfc3d..f1a262c 100644 --- a/avy.el +++ b/avy.el @@ -662,9 +662,10 @@ Set `avy-style' according to COMMMAND as well." (defun avy-action-kill-move (pt) "Kill sexp at PT and move there." (goto-char pt) - (forward-sexp) + (avy-forward-item) (kill-region pt (point)) - (message "Killed: %s" (current-kill 0))) + (message "Killed: %s" (current-kill 0)) + (point)) (defun avy-action-kill-stay (pt) "Kill sexp at PT."