comparison src/testdir/test_search.vim @ 14538:213f1a519378 v8.1.0282

patch 8.1.0282: 'incsearch' does not work with command modifiers commit https://github.com/vim/vim/commit/33c4dbb74bdf41aadd193a704f597d4df20f0e47 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 14 16:06:16 2018 +0200 patch 8.1.0282: 'incsearch' does not work with command modifiers Problem: 'incsearch' does not work with command modifiers. Solution: Skip command modifiers.
author Christian Brabandt <cb@256bit.org>
date Tue, 14 Aug 2018 16:15:04 +0200
parents 8fa7f5ff2649
children 116a01c73fd8
comparison
equal deleted inserted replaced
14537:2e7cca4372f3 14538:213f1a519378
882 call term_sendkeys(buf, ':2,3sub /fo') 882 call term_sendkeys(buf, ':2,3sub /fo')
883 sleep 100m 883 sleep 100m
884 call VerifyScreenDump(buf, 'Test_incsearch_substitute_05', {}) 884 call VerifyScreenDump(buf, 'Test_incsearch_substitute_05', {})
885 call term_sendkeys(buf, "\<Esc>") 885 call term_sendkeys(buf, "\<Esc>")
886 886
887 " Command modifiers are skipped
888 call term_sendkeys(buf, ':above below browse botr confirm keepmar keepalt keeppat keepjum filter xxx hide lockm leftabove noau noswap rightbel sandbox silent silent! $tab top unsil vert verbose 4,5s/fo.')
889 sleep 100m
890 call VerifyScreenDump(buf, 'Test_incsearch_substitute_06', {})
891 call term_sendkeys(buf, "\<Esc>")
892
887 call StopVimInTerminal(buf) 893 call StopVimInTerminal(buf)
888 call delete('Xis_subst_script') 894 call delete('Xis_subst_script')
889 endfunc 895 endfunc
890 896
891 func Test_search_undefined_behaviour() 897 func Test_search_undefined_behaviour()