File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11" zip.vim: Handles browsing zipfiles
22" AUTOLOAD PORTION
3- " Date: Aug 18, 2024
3+ " Date: 2024 Aug 21
44" Version: 34
55" Maintainer: This runtime file is looking for a new maintainer.
66" Former Maintainer: Charles E Campbell
1313" 2024 Aug 05 by Vim Project: workaround for the FreeBSD's unzip
1414" 2024 Aug 05 by Vim Project: clean-up and make it work with shellslash on Windows
1515" 2024 Aug 18 by Vim Project: correctly handle special globbing chars
16+ " 2024 Aug 21 by Vim Project: simplify condition to detect MS-Windows
1617" License: Vim License (see vim's :help license)
1718" Copyright: Copyright (C) 2005-2019 Charles E. Campbell {{{1
1819" Permission is hereby granted to use and distribute this code,
@@ -342,7 +343,7 @@ fun! zip#Extract()
342343 return
343344 endif
344345 let target = fname- >substitute (' \[' , ' [[]' , ' g' )
345- if &shell = ~ ' cmd' && ( has (" win32" ) || has ( " win64 " ) )
346+ if &shell = ~ ' cmd' && has (" win32" )
346347 let target = target
347348 \ - >substitute (' [?*]' , ' [&]' , ' g' )
348349 \ - >substitute (' [\\]' , ' ?' , ' g' )
You can’t perform that action at this time.
0 commit comments