diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-11-17 08:18:01 -0500 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-11-17 08:20:22 -0500 |
commit | 9fe472c91b7f05be3ab5f5e0a459e303fa0eacc7 (patch) | |
tree | 8daa513ec86e506ad9b5875d621d2e23e361845f /src | |
parent | 25356f2802b5b98efe7f0d6661979b0a919c4d2d (diff) | |
download | rneovim-9fe472c91b7f05be3ab5f5e0a459e303fa0eacc7.tar.gz rneovim-9fe472c91b7f05be3ab5f5e0a459e303fa0eacc7.tar.bz2 rneovim-9fe472c91b7f05be3ab5f5e0a459e303fa0eacc7.zip |
vim-patch:8.1.0258: not enough testing for the CompleteDone event
Problem: Not enough testing for the CompleteDone event.
Solution: Add a test. (closes vim/vim#3297)
https://github.com/vim/vim/commit/af559d2c9f44bc88a7d94f9236b3c024563a8e73
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_ins_complete.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_ins_complete.vim b/src/nvim/testdir/test_ins_complete.vim index 5ff63e58ba..d3429617d0 100644 --- a/src/nvim/testdir/test_ins_complete.vim +++ b/src/nvim/testdir/test_ins_complete.vim @@ -142,6 +142,19 @@ function Test_CompleteDoneDict() au! CompleteDone endfunc +func Test_CompleteDone_undo() + au CompleteDone * call append(0, "prepend1") + new + call setline(1, ["line1", "line2"]) + call feedkeys("Go\<C-X>\<C-N>\<CR>\<ESC>", "tx") + call assert_equal(["prepend1", "line1", "line2", "line1", ""], + \ getline(1, '$')) + undo + call assert_equal(["line1", "line2"], getline(1, '$')) + bwipe! + au! CompleteDone +endfunc + function! s:CompleteDone_CompleteFuncDictNoUserData( findstart, base ) if a:findstart return 0 |