aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-08-07 07:07:49 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-08-07 07:16:26 +0800
commit1937870114f5dd824a9bb61ee8dfd3be2acc5439 (patch)
tree09a0e962a671f5fcce0fbe3eaa1765e483688685
parent450d49660f52d915f78da3b0aeb21d9d658f98bd (diff)
downloadrneovim-1937870114f5dd824a9bb61ee8dfd3be2acc5439.tar.gz
rneovim-1937870114f5dd824a9bb61ee8dfd3be2acc5439.tar.bz2
rneovim-1937870114f5dd824a9bb61ee8dfd3be2acc5439.zip
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>
-rw-r--r--test/old/testdir/test_zip_plugin.vim4
1 files changed, 0 insertions, 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