diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-08-15 20:51:18 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-15 21:19:35 +0800 |
| commit | 535e423a6ae31b7b49e52768d95d6ada5b854cbb (patch) | |
| tree | 8b9a1a5c51c21280f00dc3bd46004ecd58a1605d /src/nvim/testdir/test_cmdline.vim | |
| parent | cbb2e634c9da7cc6e5fe6f18539ab7deb9d67915 (diff) | |
| download | rneovim-535e423a6ae31b7b49e52768d95d6ada5b854cbb.tar.gz rneovim-535e423a6ae31b7b49e52768d95d6ada5b854cbb.tar.bz2 rneovim-535e423a6ae31b7b49e52768d95d6ada5b854cbb.zip | |
vim-patch:8.2.1803: a few failures are not tested
Problem: A few failures are not tested.
Solution: Test a few failures. (Dominique Pellé, closes vim/vim#7075)
https://github.com/vim/vim/commit/afe8cf617013fd8c3f0189f1e1fa7a2a6a8f7511
Cherry-pick a line in Test_argdelete() from patch 8.2.1736.
Diffstat (limited to 'src/nvim/testdir/test_cmdline.vim')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 7aac731709..f95970223f 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -912,6 +912,10 @@ func Test_cmdline_complete_various() call feedkeys(":doautocmd User MyCmd a.c\<C-A>\<C-B>\"\<CR>", 'xt') call assert_equal("\"doautocmd User MyCmd a.c\<C-A>", @:) + " completion of autocmd group after comma + call feedkeys(":doautocmd BufNew,BufEn\<C-A>\<C-B>\"\<CR>", 'xt') + call assert_equal("\"doautocmd BufNew,BufEnter", @:) + " completion for the :augroup command augroup XTest augroup END |