emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/vlf eaa3629 299/310: Fix cursor position after search


From: Stefan Monnier
Subject: [elpa] externals/vlf eaa3629 299/310: Fix cursor position after search
Date: Sat, 28 Nov 2020 00:33:35 -0500 (EST)

branch: externals/vlf
commit eaa362922734a6fc0b1228a040be267faec07d3c
Author: Nil Geisweiller <ngeiswei@gmail.com>
Commit: Andrey Kotlarski <m00naticus@gmail.com>

    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)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]