comparison src/testdir/test_search.vim @ 14760:fd69edd2c67e v8.1.0392

patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled commit https://github.com/vim/vim/commit/50eb16c3b23235b21ce4494673a7741a9a196176 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 15 15:42:40 2018 +0200 patch 8.1.0392: error while typing :/foo/s// with 'incsearch' enabled Problem: Error while typing :/foo/s// with 'incsearch' enabled. Solution: Do not give search errors when highlighting matches.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Sep 2018 15:45:10 +0200
parents 2982a54aa304
children 5e5f2d824189
comparison
equal deleted inserted replaced
14759:f11109e68c68 14760:fd69edd2c67e
1053 call test_override("char_avail", 1) 1053 call test_override("char_avail", 1)
1054 let @/ = 'bar' 1054 let @/ = 'bar'
1055 call feedkeys(":/foo/s//\<Esc>", 'ntx') 1055 call feedkeys(":/foo/s//\<Esc>", 'ntx')
1056 call assert_equal('bar', @/) 1056 call assert_equal('bar', @/)
1057 1057
1058 " no error message if pattern not found
1059 call feedkeys(":/xyz/s//\<Esc>", 'ntx')
1060 call assert_equal('bar', @/)
1061
1058 bwipe! 1062 bwipe!
1059 call test_override("ALL", 0) 1063 call test_override("ALL", 0)
1060 set noincsearch 1064 set noincsearch
1061 endfunc 1065 endfunc
1062 1066