branch: master
commit 3bbd404616bfb22c192f5305be4f19907ec65c3b
Author: Tim Krones <[email protected]>
Commit: Tim Krones <[email protected]>

    Make sure avi-move-line and avi-copy-line behave consistently.
    
    Insert newline when moving one or more lines with avi-move-line.
---
 avy-jump.el |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/avy-jump.el b/avy-jump.el
index c65c63a..9a39880 100644
--- a/avy-jump.el
+++ b/avy-jump.el
@@ -315,7 +315,8 @@ ARG lines can be used."
         (move-end-of-line arg)
         (kill-region start (point)))
       (insert
-       (current-kill 0)))))
+       (current-kill 0)
+       "\n"))))
 
 ;;;###autoload
 (defun avi-copy-region ()

Reply via email to