diff src/testdir/test_search.vim @ 14652:f3b183c3d3e2 v8.1.0339

patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s commit https://github.com/vim/vim/commit/f13daa46da85a80dd05704cdde0660c2b2651a5a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 31 22:09:54 2018 +0200 patch 8.1.0339: wrong highlight when 'incsearch' set and cancelling :s Problem: Wrong highlight when 'incsearch' set and cancelling :s. Solution: Reset search line range. (Hirohito Higashi, Masamichi Abe)
author Christian Brabandt <cb@256bit.org>
date Fri, 31 Aug 2018 22:15:05 +0200
parents c6b41d47bac1
children 7771a1ff8b99
line wrap: on
line diff
--- a/src/testdir/test_search.vim
+++ b/src/testdir/test_search.vim
@@ -956,6 +956,15 @@ func Test_incsearch_substitute_dump()
   call VerifyScreenDump(buf, 'Test_incsearch_substitute_09', {})
   call term_sendkeys(buf, "\<Esc>")
 
+  call term_sendkeys(buf, ":set nocursorline\<CR>")
+
+  " All matches are highlighted for 'hlsearch' after the incsearch canceled
+  call term_sendkeys(buf, "1G*")
+  call term_sendkeys(buf, ":2,5s/foo")
+  sleep 100m
+  call term_sendkeys(buf, "\<Esc>")
+  call VerifyScreenDump(buf, 'Test_incsearch_substitute_10', {})
+
   call StopVimInTerminal(buf)
   call delete('Xis_subst_script')
 endfunc