summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleh Krehel <ohwoeowho@gmail.com>2017-12-10 19:56:44 +0100
committerOleh Krehel <ohwoeowho@gmail.com>2017-12-10 20:06:33 +0100
commita25b255b2544f9a8fbb37cd7b7e8ce61186d4639 (patch)
tree32fe36a6d24b589e1a18d5e9be4e429153f1b8fc
parentdee0284f3fa771e30c7f1b09d82f8fc869cd167f (diff)
avy.el (avy-action-yank): Adjust for avy-goto-line
Re #191
-rw-r--r--avy.el3
1 files changed, 2 insertions, 1 deletions
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."