aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-06-16 11:15:23 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-06-16 11:37:13 -0400
commit0d3557ad72f724af908b408313cdfedba57edf96 (patch)
treead3b6592d3183df31ef89b2e3a3eba523d287299
parent440c33343dc569a8d77c858c3f9f2d7c4652a497 (diff)
downloadrneovim-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
-rw-r--r--src/nvim/testdir/test_gf.vim2
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])