diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-09 04:40:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-09 04:40:15 +0800 |
| commit | bcea7329975f05b5ac18868e29c0960eda2cb20f (patch) | |
| tree | e7b0ab8c3656c1a86bf397c09e8dafd99c634c08 /src/nvim/testdir/test_writefile.vim | |
| parent | 46c93b43046eae6600832c563169e154a3ecb1be (diff) | |
| parent | f8b40694b1139d01a7b6b1e5923b18198a504bf8 (diff) | |
| download | rneovim-bcea7329975f05b5ac18868e29c0960eda2cb20f.tar.gz rneovim-bcea7329975f05b5ac18868e29c0960eda2cb20f.tar.bz2 rneovim-bcea7329975f05b5ac18868e29c0960eda2cb20f.zip | |
Merge pull request #17328 from zeertzjq/vim-8.2.0197
vim-patch:8.2.0197: some Ex commands not sufficiently tested
Diffstat (limited to 'src/nvim/testdir/test_writefile.vim')
| -rw-r--r-- | src/nvim/testdir/test_writefile.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_writefile.vim b/src/nvim/testdir/test_writefile.vim index 5ffbe82082..1d9fc6e3f7 100644 --- a/src/nvim/testdir/test_writefile.vim +++ b/src/nvim/testdir/test_writefile.vim @@ -169,9 +169,7 @@ endfunc " Test for ':w !<cmd>' to pipe lines from the current buffer to an external " command. func Test_write_pipe_to_cmd() - if !has('unix') - return - endif + CheckUnix new call setline(1, ['L1', 'L2', 'L3', 'L4']) 2,3w !cat > Xfile |