diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 09:23:54 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 09:23:54 +0800 |
| commit | f25ab39faaf9e5e161d3c285a4af645383c5498b (patch) | |
| tree | 5cfd6a2be253c0335b44db240c142eceb805506b /src/nvim/testdir/test_writefile.vim | |
| parent | f5c4c1d7684d9d39dd469e10322ce6a5df5c3281 (diff) | |
| download | rneovim-f25ab39faaf9e5e161d3c285a4af645383c5498b.tar.gz rneovim-f25ab39faaf9e5e161d3c285a4af645383c5498b.tar.bz2 rneovim-f25ab39faaf9e5e161d3c285a4af645383c5498b.zip | |
vim-patch:8.1.0846: not easy to recognize the system Vim runs on
Problem: Not easy to recognize the system Vim runs on.
Solution: Add more items to the features list. (Ozaki Kiichi, closes vim/vim#3855)
https://github.com/vim/vim/commit/39536dd557e847e80572044c2be319db5886abe3
Some doc changes have already been applied. Some others are N/A.
"moon" was removed in patch 8.2.0427 so I did not add it.
Diffstat (limited to 'src/nvim/testdir/test_writefile.vim')
| -rw-r--r-- | src/nvim/testdir/test_writefile.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_writefile.vim b/src/nvim/testdir/test_writefile.vim index aa7882d129..5ffbe82082 100644 --- a/src/nvim/testdir/test_writefile.vim +++ b/src/nvim/testdir/test_writefile.vim @@ -43,7 +43,7 @@ func Test_writefile_fails_gently() endfunc func Test_writefile_fails_conversion() - if !has('iconv') || system('uname -s') =~ 'SunOS' + if !has('iconv') || has('sun') return endif " Without a backup file the write won't happen if there is a conversion |