commit | d7aca7a71c7254501c08f04db1798df479df0e89 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed May 24 10:05:56 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed May 24 10:05:56 2017 +0200 |
tree | 666be42e6e4afeb5845af63274f9a99923ebf755 | |
parent | 2a79ed293c077ba791db962f0e121cf97ba4f7a7 [diff] [blame] |
patch 8.0.0603: gF test fails on MS-Windows Problem: gF test fails on MS-Windows. Solution: Use @ instead of : before the line number
diff --git a/src/testdir/test_gf.vim b/src/testdir/test_gf.vim index 1f3db24..d5bdfab 100644 --- a/src/testdir/test_gf.vim +++ b/src/testdir/test_gf.vim
@@ -38,7 +38,7 @@ w! Xfile close new - call setline(1, ['one', 'Xfile:3', 'three']) + call setline(1, ['one', 'Xfile@3', 'three']) 2 call assert_fails('normal gF', 'E37:') call assert_equal(2, getcurpos()[1])