diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-06 17:11:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-06 17:11:25 +0800 |
| commit | c30226c28b44f1eefd495f7345219b62662c0dbc (patch) | |
| tree | 486e1e2d9d5809d5cfc041959c777939c0ef3ef6 /src/nvim/testdir/test_buffer.vim | |
| parent | c6af296cf8e381731f8a233cf89396e0dc7fd4ba (diff) | |
| parent | 70843631fe8d2e8e93e6ecf7d08c7824352938b7 (diff) | |
| download | rneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.tar.gz rneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.tar.bz2 rneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.zip | |
Merge pull request #20962 from zeertzjq/vim-8.2.1736
vim-patch:8.2.{1736,3719,3744}
Diffstat (limited to 'src/nvim/testdir/test_buffer.vim')
| -rw-r--r-- | src/nvim/testdir/test_buffer.vim | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/nvim/testdir/test_buffer.vim b/src/nvim/testdir/test_buffer.vim index 27c2d5d442..d8d22ff872 100644 --- a/src/nvim/testdir/test_buffer.vim +++ b/src/nvim/testdir/test_buffer.vim @@ -147,6 +147,7 @@ func Test_bdelete_cmd() %bwipe! call assert_fails('bdelete 5', 'E516:') call assert_fails('1,1bdelete 1 2', 'E488:') + call assert_fails('bdelete \)', 'E55:') " Deleting a unlisted and unloaded buffer edit Xfile1 @@ -401,12 +402,12 @@ func Test_buffer_scheme() set noshellslash %bwipe! let bufnames = [ - \ #{id: 'b0', name: 'test://xyz/foo/b0' , match: 1}, - \ #{id: 'b1', name: 'test+abc://xyz/foo/b1', match: 0}, - \ #{id: 'b2', name: 'test_abc://xyz/foo/b2', match: 0}, - \ #{id: 'b3', name: 'test-abc://xyz/foo/b3', match: 1}, - \ #{id: 'b4', name: '-test://xyz/foo/b4' , match: 0}, - \ #{id: 'b5', name: 'test-://xyz/foo/b5' , match: 0}, + \ #{id: 'ssb0', name: 'test://xyz/foo/ssb0' , match: 1}, + \ #{id: 'ssb1', name: 'test+abc://xyz/foo/ssb1', match: 0}, + \ #{id: 'ssb2', name: 'test_abc://xyz/foo/ssb2', match: 0}, + \ #{id: 'ssb3', name: 'test-abc://xyz/foo/ssb3', match: 1}, + \ #{id: 'ssb4', name: '-test://xyz/foo/ssb4' , match: 0}, + \ #{id: 'ssb5', name: 'test-://xyz/foo/ssb5' , match: 0}, \] for buf in bufnames new `=buf.name` |