summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-29 19:22:44 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-29 19:22:44 +0000
commit94fb8274ca8c93a10102d41c8bcc848f75cb7334 (patch)
treea1b8fa7ab7565ded649e7dbdd565c11ff67ab272
parent5a664fe57fe7ba65a771bc95ef1c205e4db193b7 (diff)
patch 8.2.3940: match highlight disappears when doing incsearch for ":s/pat"v8.2.3940
Problem: Match highlight disappears when doing incsearch for ":s/pat". Solution: Only use line limit for incsearch highlighting. (closes #9425)
-rw-r--r--src/match.c2
-rw-r--r--src/testdir/dumps/Test_match_with_incsearch_1.dump6
-rw-r--r--src/testdir/dumps/Test_match_with_incsearch_2.dump6
-rw-r--r--src/testdir/test_match.vim21
-rw-r--r--src/version.c2
5 files changed, 36 insertions, 1 deletions
diff --git a/src/match.c b/src/match.c
index 40f426ec69..3b5c18e424 100644
--- a/src/match.c
+++ b/src/match.c
@@ -427,7 +427,7 @@ next_search_hl(
int called_emsg_before = called_emsg;
// for :{range}s/pat only highlight inside the range
- if (lnum < search_first_line || lnum > search_last_line)
+ if ((lnum < search_first_line || lnum > search_last_line) && cur == NULL)
{
shl->lnum = 0;
return;
diff --git a/src/testdir/dumps/Test_match_with_incsearch_1.dump b/src/testdir/dumps/Test_match_with_incsearch_1.dump
new file mode 100644
index 0000000000..8a9d30c277
--- /dev/null
+++ b/src/testdir/dumps/Test_match_with_incsearch_1.dump
@@ -0,0 +1,6 @@
+>0+0&#ffffff0| @73
+|1| @73
+|2+0#ffffff16#e000002| +0#0000000#ffffff0@73
+|3| @73
+|4| @73
+@57|1|,|1| @10|T|o|p|
diff --git a/src/testdir/dumps/Test_match_with_incsearch_2.dump b/src/testdir/dumps/Test_match_with_incsearch_2.dump
new file mode 100644
index 0000000000..9e9868b0f7
--- /dev/null
+++ b/src/testdir/dumps/Test_match_with_incsearch_2.dump
@@ -0,0 +1,6 @@
+|0+1&#ffffff0| +0&&@73
+|1| @73
+|2+0#ffffff16#e000002| +0#0000000#ffffff0@73
+|3| @73
+|4| @73
+|:|s|/|0> @70
diff --git a/src/testdir/test_match.vim b/src/testdir/test_match.vim
index 6ca163b363..0af45a49a7 100644
--- a/src/testdir/test_match.vim
+++ b/src/testdir/test_match.vim
@@ -366,6 +366,27 @@ func Test_match_in_linebreak()
call delete('XscriptMatchLinebreak')
endfunc
+func Test_match_with_incsearch()
+ CheckRunVimInTerminal
+
+ let lines =<< trim END
+ set incsearch
+ call setline(1, range(20))
+ call matchaddpos('ErrorMsg', [3])
+ END
+ call writefile(lines, 'XmatchWithIncsearch')
+ let buf = RunVimInTerminal('-S XmatchWithIncsearch', #{rows: 6})
+ call TermWait(buf)
+ call VerifyScreenDump(buf, 'Test_match_with_incsearch_1', {})
+
+ call term_sendkeys(buf, ":s/0")
+ call VerifyScreenDump(buf, 'Test_match_with_incsearch_2', {})
+
+ call term_sendkeys(buf, "\<CR>")
+ call StopVimInTerminal(buf)
+ call delete('XmatchWithIncsearch')
+endfunc
+
" Test for deleting matches outside of the screen redraw top/bottom lines
" This should cause a redraw of those lines.
func Test_matchdelete_redraw()
diff --git a/src/version.c b/src/version.c
index 0f0414e92d..ee3a29f514 100644
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3940,
+/**/
3939,
/**/
3938,