From 1937870114f5dd824a9bb61ee8dfd3be2acc5439 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 7 Aug 2024 07:07:49 +0800 Subject: [PATCH] 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 --- test/old/testdir/test_zip_plugin.vim | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/old/testdir/test_zip_plugin.vim b/test/old/testdir/test_zip_plugin.vim index 741e4ed91f..b214516e05 100644 --- 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