diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-03-28 19:29:10 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-04-12 02:24:46 -0400 |
commit | 4bbe51b79efe751159e900200716ff715c1452c5 (patch) | |
tree | fb7745b729997a3e5228bd18c2f8bf8832cbe99e | |
parent | 6245b4873d5e24fade9aadadf32645bfb3ebfc31 (diff) | |
download | rneovim-4bbe51b79efe751159e900200716ff715c1452c5.tar.gz rneovim-4bbe51b79efe751159e900200716ff715c1452c5.tar.bz2 rneovim-4bbe51b79efe751159e900200716ff715c1452c5.zip |
oldtests: win: help sp?it opens split()
Vim 8 and Neovim 0.2.3 open the same target on Windows.
-rw-r--r-- | src/nvim/testdir/test_help_tagjump.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_help_tagjump.vim b/src/nvim/testdir/test_help_tagjump.vim index 06c48d8e76..4d4a902031 100644 --- a/src/nvim/testdir/test_help_tagjump.vim +++ b/src/nvim/testdir/test_help_tagjump.vim @@ -30,7 +30,7 @@ func Test_help_tagjump() help sp?it call assert_equal("help", &filetype) - call assert_true(getline('.') =~ '\*:split\*') + call assert_true(getline('.') =~ '\*'.(has('win32') ? 'split()' : ':split').'\*') helpclose help :? |