diff options
| author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-16 11:15:23 -0400 | 
|---|---|---|
| committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-16 11:37:13 -0400 | 
| commit | 0d3557ad72f724af908b408313cdfedba57edf96 (patch) | |
| tree | ad3b6592d3183df31ef89b2e3a3eba523d287299 /src | |
| parent | 440c33343dc569a8d77c858c3f9f2d7c4652a497 (diff) | |
| download | rneovim-0d3557ad72f724af908b408313cdfedba57edf96.tar.gz rneovim-0d3557ad72f724af908b408313cdfedba57edf96.tar.bz2 rneovim-0d3557ad72f724af908b408313cdfedba57edf96.zip | |
vim-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
https://github.com/vim/vim/commit/d7aca7a71c7254501c08f04db1798df479df0e89
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/testdir/test_gf.vim | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/nvim/testdir/test_gf.vim b/src/nvim/testdir/test_gf.vim index 1f3db2401e..d5bdfab652 100644 --- a/src/nvim/testdir/test_gf.vim +++ b/src/nvim/testdir/test_gf.vim @@ -38,7 +38,7 @@ func Test_gF()    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]) | 
