diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2021-05-12 00:44:39 +0200 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2021-05-12 00:47:21 +0200 |
commit | 4ba3d059bfcd5b08b0831e7d71de26284db6dcb9 (patch) | |
tree | 91315ea95b65d83bb313d43d3141f9adf60663a0 /test/functional/legacy/011_autocommands_spec.lua | |
parent | 7d82ea01025b6981e0233ca9a5e7ee62c8b5bcad (diff) | |
download | rneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.tar.gz rneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.tar.bz2 rneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.zip |
Revert "vim-patch:8.1.1378: delete() can not handle a file name that looks like a pattern (#12784)"
This reverts commit 4be0e92db01a502863ac4bb26dd0fee16d833145.
Unfortunately, that commit stalled the Windows builds on GHA and likely requires
other patches to work properly.
Diffstat (limited to 'test/functional/legacy/011_autocommands_spec.lua')
-rw-r--r-- | test/functional/legacy/011_autocommands_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/011_autocommands_spec.lua b/test/functional/legacy/011_autocommands_spec.lua index c9c004eec1..7cc31dc787 100644 --- a/test/functional/legacy/011_autocommands_spec.lua +++ b/test/functional/legacy/011_autocommands_spec.lua @@ -70,7 +70,7 @@ describe('file reading, writing and bufnew and filter autocommands', function() feed_command('let $GZIP = ""') --execute('au FileChangedShell * echo "caught FileChangedShell"') feed_command('set bin') - feed_command("au FileReadPost *.gz '[,']!GZIP= gzip -d") + feed_command("au FileReadPost *.gz '[,']!gzip -d") -- Read and decompress the testfile. feed_command('$r Xtestfile.gz') expect('\n'..text1) |