diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-07 21:45:17 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-14 18:20:28 -0400 |
commit | 9b361e9ea181148eedf5ffd9f0b149838f754bdd (patch) | |
tree | c1fd377f9c66012125b7f7009576791d46a7dd0b | |
parent | 4887c3dc1c64d884f14a7c5f7baa14e7a9e7100c (diff) | |
download | rneovim-9b361e9ea181148eedf5ffd9f0b149838f754bdd.tar.gz rneovim-9b361e9ea181148eedf5ffd9f0b149838f754bdd.tar.bz2 rneovim-9b361e9ea181148eedf5ffd9f0b149838f754bdd.zip |
vim-patch:8.2.1369: MS-Windows: autocommand test sometimes fails
Problem: MS-Windows: autocommand test sometimes fails.
Solution: Do not rely on the cat command.
https://github.com/vim/vim/commit/14ddd226daa324831e1872c352452f202fd6068c
-rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index d116246ef3..3dd68873d4 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -1125,7 +1125,7 @@ func Test_change_mark_in_autocmds() write au! BufWritePre - if executable('cat') + if has('unix') write XtestFilter write >> XtestFilter |