diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-01 10:43:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 10:43:14 +0800 |
| commit | 547497b042dccc10de0e144485d36952dbd1182e (patch) | |
| tree | 51e74fbd45dda0dc49ceb0b47b063d111c80cf4b /src/nvim/testdir/test_gf.vim | |
| parent | 5205bcc9049a171e90ebd01bbc0367f4ae2371d1 (diff) | |
| parent | bba5003bdb628764362d8c4869a1e1999584d716 (diff) | |
| download | rneovim-547497b042dccc10de0e144485d36952dbd1182e.tar.gz rneovim-547497b042dccc10de0e144485d36952dbd1182e.tar.bz2 rneovim-547497b042dccc10de0e144485d36952dbd1182e.zip | |
Merge pull request #17261 from zeertzjq/vim-8.2.4273
vim-patch:8.2.4273: the EBCDIC support is outdated
Diffstat (limited to 'src/nvim/testdir/test_gf.vim')
| -rw-r--r-- | src/nvim/testdir/test_gf.vim | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/nvim/testdir/test_gf.vim b/src/nvim/testdir/test_gf.vim index 43efd6248e..589899f532 100644 --- a/src/nvim/testdir/test_gf.vim +++ b/src/nvim/testdir/test_gf.vim @@ -19,11 +19,7 @@ func Test_gf_url() call search("^second") call search("URL") call assert_equal("URL://machine.name/tmp/vimtest2b", expand("<cfile>")) - if has("ebcdic") - set isf=@,240-249,/,.,-,_,+,,,$,:,~,\ - else - set isf=@,48-57,/,.,-,_,+,,,$,~,\ - endif + set isf=@,48-57,/,.,-,_,+,,,$,~,\ call search("^third") call search("name") call assert_equal("URL:\\\\machine.name\\vimtest2c", expand("<cfile>")) @@ -76,11 +72,7 @@ endfunc " Test for invoking 'gf' on a ${VAR} variable func Test_gf() - if has("ebcdic") - set isfname=@,240-249,/,.,-,_,+,,,$,:,~,{,} - else - set isfname=@,48-57,/,.,-,_,+,,,$,:,~,{,} - endif + set isfname=@,48-57,/,.,-,_,+,,,$,:,~,{,} call writefile(["Test for gf command"], "Xtest1") if has("unix") |