vim-patch:8.2.2355: stray test failure on Appveyor

Problem:    Stray test failure on Appveyor.
Solution:   Finish insert command.
97c6943e11
This commit is contained in:
Jan Edmund Lazo 2021-01-16 20:44:13 -05:00
parent 7befdb3419
commit 562877c135
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -1110,14 +1110,14 @@ func Test_BufReadCmd()
endfunc
func SetChangeMarks(start, end)
exe a:start. 'mark ['
exe a:end. 'mark ]'
exe a:start .. 'mark ['
exe a:end .. 'mark ]'
endfunc
" Verify the effects of autocmds on '[ and ']
func Test_change_mark_in_autocmds()
edit! Xtest
call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u", 'xtn')
call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u\<Esc>", 'xtn')
call SetChangeMarks(2, 3)
write