From 9b361e9ea181148eedf5ffd9f0b149838f754bdd Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 7 Aug 2020 21:45:17 -0400 Subject: 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 --- src/nvim/testdir/test_autocmd.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit