diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-16 20:44:13 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-17 12:42:27 -0500 |
commit | 562877c1350683ea62e815824a8eec1075b6eae7 (patch) | |
tree | 543af6173da6bdb5ed1e79ccf773f9802053dd36 /src | |
parent | 7befdb34198b3d0f570e5922fc2b9d0825dd69a1 (diff) | |
download | rneovim-562877c1350683ea62e815824a8eec1075b6eae7.tar.gz rneovim-562877c1350683ea62e815824a8eec1075b6eae7.tar.bz2 rneovim-562877c1350683ea62e815824a8eec1075b6eae7.zip |
vim-patch:8.2.2355: stray test failure on Appveyor
Problem: Stray test failure on Appveyor.
Solution: Finish insert command.
https://github.com/vim/vim/commit/97c6943e11516711541848e51db3cc2ace25bbb2
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index 641e98ab30..c571e37ac3 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -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 |