From eaa362922734a6fc0b1228a040be267faec07d3c Mon Sep 17 00:00:00 2001 From: Nil Geisweiller Date: Thu, 30 Mar 2017 16:39:12 +0300 Subject: [PATCH] Fix cursor position after search After searching forward (resp. backward) the cursor should be at the end (resp. the beginning) of the match. That way one can jump to the next match by running again the command. --- vlf-search.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlf-search.el b/vlf-search.el index 6bb724f..0268ee6 100644 --- a/vlf-search.el +++ b/vlf-search.el @@ -140,10 +140,10 @@ Return t if search has been at least partially successful." (let ((result (if backward (vlf-goto-match match-chunk-start match-chunk-end - match-end-pos match-start-pos + match-start-pos match-end-pos count to-find time highlight) (vlf-goto-match match-chunk-start match-chunk-end - match-start-pos match-end-pos + match-end-pos match-start-pos count to-find time highlight)))) (run-hook-with-args 'vlf-after-batch-functions 'search) result)))))