diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-18 15:24:39 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-18 15:24:39 +0800 |
| commit | f70963f8380723ada33cdb78289cf16f15c7be83 (patch) | |
| tree | 6c16bcbdf3e091056656287c3f7a5f7e4398e83b /src/nvim/testdir | |
| parent | 282cbc2350986c3fc1edb507c4facc8d8fe8cd97 (diff) | |
| parent | 41c85ac2ef71be6ec1d62fdb7b6d6b1a30ab24ee (diff) | |
| download | rneovim-f70963f8380723ada33cdb78289cf16f15c7be83.tar.gz rneovim-f70963f8380723ada33cdb78289cf16f15c7be83.tar.bz2 rneovim-f70963f8380723ada33cdb78289cf16f15c7be83.zip | |
Merge pull request #21101 from zeertzjq/vim-8.2.4494
vim-patch:8.2.{4494,4496}: find_tags() function is too long
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_tagjump.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_tagjump.vim b/src/nvim/testdir/test_tagjump.vim index bfc61e7b48..361aa23291 100644 --- a/src/nvim/testdir/test_tagjump.vim +++ b/src/nvim/testdir/test_tagjump.vim @@ -1448,6 +1448,11 @@ func Test_tagfile_errors() endtry call assert_equal(v:true, caught_431) + " tag name and file name are not separated by a tab + call writefile(["!_TAG_FILE_ENCODING\tutf-8\t//", + \ "foo Xfile 1"], 'Xtags') + call assert_fails('tag foo', 'E431:') + call delete('Xtags') call delete('Xfile') set tags& |