From c036e87bd7001238ab7cc5d9e30e59bbf989a5fd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 21 Feb 2020 21:30:52 +0100 Subject: patch 8.2.0295: highlighting for :s wrong when using different separator Problem: Highlighting for :s wrong when using different separator. Solution: Use separat argument for search direction and separator. (Rob Pilling, closes #5665) --- src/quickfix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/quickfix.c') diff --git a/src/quickfix.c b/src/quickfix.c index f1df111212..7ae489b5d3 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -3197,7 +3197,7 @@ qf_jump_goto_line( // Move the cursor to the first line in the buffer save_cursor = curwin->w_cursor; curwin->w_cursor.lnum = 0; - if (!do_search(NULL, '/', qf_pattern, (long)1, SEARCH_KEEP, NULL)) + if (!do_search(NULL, '/', '/', qf_pattern, (long)1, SEARCH_KEEP, NULL)) curwin->w_cursor = save_cursor; } } -- cgit v1.2.3