branch: master
commit a25b255b2544f9a8fbb37cd7b7e8ce61186d4639
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
avy.el (avy-action-yank): Adjust for avy-goto-line
Re #191
---
avy.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/avy.el b/avy.el
index f1a262c..417fb6f 100644
--- a/avy.el
+++ b/avy.el
@@ -657,7 +657,8 @@ Set `avy-style' according to COMMMAND as well."
(defun avy-action-yank (pt)
"Yank sexp starting at PT at the current point."
(avy-action-copy pt)
- (yank))
+ (yank)
+ t)
(defun avy-action-kill-move (pt)
"Kill sexp at PT and move there."