diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-04-13 12:39:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 12:39:05 +0200 |
commit | 231e1988ed788caa6b15817c63e94f38cd8ac75c (patch) | |
tree | 19075fb970fe69dd7cc0a146c4a2db1a33fe02f5 /test/old/testdir/test_usercommands.vim | |
parent | 99c1010aa740b76df341a756231e99d0116fc3be (diff) | |
parent | e4a136f713753e6ace97f419be562567f1ce535f (diff) | |
download | rneovim-231e1988ed788caa6b15817c63e94f38cd8ac75c.tar.gz rneovim-231e1988ed788caa6b15817c63e94f38cd8ac75c.tar.bz2 rneovim-231e1988ed788caa6b15817c63e94f38cd8ac75c.zip |
Merge pull request #23054 from bfredl/nobehave
feat(ex_cmds)!: remove :behave
Diffstat (limited to 'test/old/testdir/test_usercommands.vim')
-rw-r--r-- | test/old/testdir/test_usercommands.vim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/old/testdir/test_usercommands.vim b/test/old/testdir/test_usercommands.vim index 898f7a59f1..ac37094b1b 100644 --- a/test/old/testdir/test_usercommands.vim +++ b/test/old/testdir/test_usercommands.vim @@ -303,7 +303,6 @@ func Test_CmdErrors() call assert_fails('com! -complete=xxx DoCmd :', 'E180:') call assert_fails('com! -complete=custom DoCmd :', 'E467:') call assert_fails('com! -complete=customlist DoCmd :', 'E467:') - call assert_fails('com! -complete=behave,CustomComplete DoCmd :', 'E468:') call assert_fails('com! -complete=file DoCmd :', 'E1208:') call assert_fails('com! -nargs=0 -complete=file DoCmd :', 'E1208:') call assert_fails('com! -nargs=x DoCmd :', 'E176:') @@ -391,10 +390,6 @@ func Test_CmdCompletion() call feedkeys(":com DoC\<C-A>\<C-B>\"\<CR>", 'tx') call assert_equal('"com DoC', @:) - com! -nargs=1 -complete=behave DoCmd : - call feedkeys(":DoCmd \<C-A>\<C-B>\"\<CR>", 'tx') - call assert_equal('"DoCmd mswin xterm', @:) - " Test for file name completion com! -nargs=1 -complete=file DoCmd : call feedkeys(":DoCmd READM\<Tab>\<C-B>\"\<CR>", 'tx') |