commit 1937870114f5dd824a9bb61ee8dfd3be2acc5439
parent 450d49660f52d915f78da3b0aeb21d9d658f98bd
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed, 7 Aug 2024 07:07:49 +0800
vim-patch:9.1.0663: tests: zip test still resets 'shellslash' option
Problem: tests: zip test still resets 'shellslash' option
Solution: Remove resetting the 'shellslash' option, the zip
plugin should now be able to handle this options
closes: vim/vim#15434
https://github.com/vim/vim/commit/91efcd115e700725b9ebded0f5d7bc0d3fa98d9d
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/test/old/testdir/test_zip_plugin.vim b/test/old/testdir/test_zip_plugin.vim
@@ -10,8 +10,6 @@ endif
runtime plugin/zipPlugin.vim
func Test_zip_basic()
- let _sl = &shellslash
- set noshellslash
"## get our zip file
if !filecopy("samples/test.zip", "X.zip")
@@ -134,6 +132,4 @@ func Test_zip_basic()
bw
- let &shellslash = _sl
-
endfunc