diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2016-12-07 18:47:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-07 18:47:10 +0100 |
| commit | 8da23cb919e55825bc89f0ebfcebcc07374d9d18 (patch) | |
| tree | 78942ea2378e2acd6985f219aa89e12bc6106c25 /src/nvim/testdir | |
| parent | e6b7dade4f1dafb6dff3d1a7ebdc0ddbf7122d02 (diff) | |
| parent | f7a49532b16851af1ab5599c5aa6c93c45f7d686 (diff) | |
| download | rneovim-8da23cb919e55825bc89f0ebfcebcc07374d9d18.tar.gz rneovim-8da23cb919e55825bc89f0ebfcebcc07374d9d18.tar.bz2 rneovim-8da23cb919e55825bc89f0ebfcebcc07374d9d18.zip | |
Merge #5729 from jamessan/vim-7.4.1751
vim-patch:7.4.1751,8d8aa0a
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_alot.vim | 1 | ||||
| -rw-r--r-- | src/nvim/testdir/test_tagjump.vim | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_alot.vim b/src/nvim/testdir/test_alot.vim index c9d7b332e4..67e27e72a2 100644 --- a/src/nvim/testdir/test_alot.vim +++ b/src/nvim/testdir/test_alot.vim @@ -18,5 +18,6 @@ source test_statusline.vim source test_syn_attr.vim source test_tabline.vim source test_tabpage.vim +source test_tagjump.vim source test_unlet.vim source test_matchadd_conceal_utf8.vim diff --git a/src/nvim/testdir/test_tagjump.vim b/src/nvim/testdir/test_tagjump.vim new file mode 100644 index 0000000000..d8a333f44c --- /dev/null +++ b/src/nvim/testdir/test_tagjump.vim @@ -0,0 +1,9 @@ +" Tests for tagjump (tags and special searches) + +" SEGV occurs in older versions. (At least 7.4.1748 or older) +func Test_ptag_with_notagstack() + set notagstack + call assert_fails('ptag does_not_exist_tag_name', 'E426') + set tagstack&vim +endfunc +" vim: sw=2 et |