mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.2050: search test contains unneeded sleeps
Problem: Search test contains unneeded sleeps.
Solution: Rename the function, remove sleeps. (Christian Brabandt,
closes vim/vim#7369)
6bed0dbc85
This commit is contained in:
parent
20e5cb151b
commit
a0d3461bf8
@ -1344,7 +1344,7 @@ func Test_search_smartcase_utf8()
|
|||||||
close!
|
close!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_zzzz_incsearch_highlighting_newline()
|
func Test_incsearch_highlighting_newline()
|
||||||
CheckRunVimInTerminal
|
CheckRunVimInTerminal
|
||||||
CheckOption incsearch
|
CheckOption incsearch
|
||||||
CheckScreendump
|
CheckScreendump
|
||||||
@ -1357,20 +1357,16 @@ func Test_zzzz_incsearch_highlighting_newline()
|
|||||||
[CODE]
|
[CODE]
|
||||||
call writefile(commands, 'Xincsearch_nl')
|
call writefile(commands, 'Xincsearch_nl')
|
||||||
let buf = RunVimInTerminal('-S Xincsearch_nl', {'rows': 5, 'cols': 10})
|
let buf = RunVimInTerminal('-S Xincsearch_nl', {'rows': 5, 'cols': 10})
|
||||||
" Need to send one key at a time to force a redraw
|
|
||||||
call term_sendkeys(buf, '/test')
|
call term_sendkeys(buf, '/test')
|
||||||
sleep 100m
|
|
||||||
call VerifyScreenDump(buf, 'Test_incsearch_newline1', {})
|
call VerifyScreenDump(buf, 'Test_incsearch_newline1', {})
|
||||||
|
" Need to send one key at a time to force a redraw
|
||||||
call term_sendkeys(buf, '\n')
|
call term_sendkeys(buf, '\n')
|
||||||
sleep 100m
|
|
||||||
call VerifyScreenDump(buf, 'Test_incsearch_newline2', {})
|
call VerifyScreenDump(buf, 'Test_incsearch_newline2', {})
|
||||||
call term_sendkeys(buf, 'x')
|
call term_sendkeys(buf, 'x')
|
||||||
sleep 100m
|
|
||||||
call VerifyScreenDump(buf, 'Test_incsearch_newline3', {})
|
call VerifyScreenDump(buf, 'Test_incsearch_newline3', {})
|
||||||
call term_sendkeys(buf, 'x')
|
call term_sendkeys(buf, 'x')
|
||||||
call VerifyScreenDump(buf, 'Test_incsearch_newline4', {})
|
call VerifyScreenDump(buf, 'Test_incsearch_newline4', {})
|
||||||
call term_sendkeys(buf, "\<CR>")
|
call term_sendkeys(buf, "\<CR>")
|
||||||
sleep 100m
|
|
||||||
call VerifyScreenDump(buf, 'Test_incsearch_newline5', {})
|
call VerifyScreenDump(buf, 'Test_incsearch_newline5', {})
|
||||||
call StopVimInTerminal(buf)
|
call StopVimInTerminal(buf)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user