From 3bbd404616bfb22c192f5305be4f19907ec65c3b Mon Sep 17 00:00:00 2001 From: Tim Krones Date: Mon, 4 May 2015 22:37:15 +0200 Subject: [PATCH] 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 file changed, 2 insertions(+), 1 deletion(-) 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 ()