diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-12 17:49:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-12 17:49:09 -0500 |
| commit | 9c56d8e5f792cf770ebe88d9488549b4106b06a9 (patch) | |
| tree | 71ec536118f45db40fb2c0e2541a79edd170ebf9 /src/nvim/testdir | |
| parent | 257c0f89a926b76a6a8d95ea8bd45a707a47bbb4 (diff) | |
| parent | d5ab4b800c321d6cdd2cb308a9cdbaa3fa66cd8d (diff) | |
| download | rneovim-9c56d8e5f792cf770ebe88d9488549b4106b06a9.tar.gz rneovim-9c56d8e5f792cf770ebe88d9488549b4106b06a9.tar.bz2 rneovim-9c56d8e5f792cf770ebe88d9488549b4106b06a9.zip | |
Merge pull request #13522 from janlazo/vim-8.2.2130
vim-patch:8.1.1089,8.2.2130
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_ins_complete.vim | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_ins_complete.vim b/src/nvim/testdir/test_ins_complete.vim index 6fe1d29434..9435931d41 100644 --- a/src/nvim/testdir/test_ins_complete.vim +++ b/src/nvim/testdir/test_ins_complete.vim @@ -280,7 +280,7 @@ func Test_omni_dash() set omnifunc=Omni new exe "normal Gofind -\<C-x>\<C-o>" - call assert_equal("\n-\nmatch 1 of 2", execute(':2mess')) + call assert_equal("find -help", getline('$')) bwipe! delfunc Omni @@ -468,3 +468,17 @@ func Test_pum_with_folds_two_tabs() call StopVimInTerminal(buf) call delete('Xpumscript') endfunc + +" Test to ensure 'Scanning...' messages are not recorded in messages history +func Test_z1_complete_no_history() + new + messages clear + let currmess = execute('messages') + setlocal dictionary=README.txt + exe "normal owh\<C-X>\<C-K>" + exe "normal owh\<C-N>" + call assert_equal(currmess, execute('messages')) + close! +endfunc + +" vim: shiftwidth=2 sts=2 expandtab |