Skip to content

Commit 8824526

Browse files
MultisampledNightchrisbra
authored andcommitted
runtime(zip): add *.pkpass to list of zip extensions
Similar to a359c9c. See https://developer.apple.com/documentation/walletpasses/building-a-pass#Sign-the-Pass-and-Create-the-Bundle, which explicitly mentions that pkpasses are just renamed ZIPs. closes: #18501 Signed-off-by: MultisampledNight <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent cd6e209 commit 8824526

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

runtime/doc/pi_zip.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
110110
should be treated as zip files.
111111

112112
Alternatively, one may change *g:zipPlugin_ext* in one's .vimrc.
113-
Currently (as of April 2025) it holds: >
113+
Currently (as of October 2025) it holds: >
114114
115115
let g:zipPlugin_ext='*.aar,*.apk,*.celzip,*.crtx,*.docm,*.docx,
116116
\ *.dotm,*.dotx,*.ear,*.epub,*.gcsx,*.glox,*.gqsx,*.ja,*.jar,*.kmz,
117117
\ *.odb,*.odc,*.odf,*.odg,*.odi,*.odm,*.odp,*.ods,*.odt,*.otc,*.otf,
118-
\ *.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.potm,*.potx,*.ppam,
119-
\ *.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.whl,*.wsz,
120-
\ *.xap,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
118+
\ *.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.pkpass,*.potm,*.potx,
119+
\ *.ppam,*.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.whl,
120+
\ *.wsz, *.xap,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
121121
122122
==============================================================================
123123
4. History *zip-history* {{{1

runtime/plugin/zipPlugin.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
" Former Maintainer: Charles E Campbell
66
" Last Change:
77
" 2025 Apr 02 by Vim Project: add *.whl to list of zip extensions (#17038)
8+
" 2025 Oct 06 by MultisampledNight: add *.pkpass to list of zip extensions (#18501)
89
" License: Vim License (see vim's :help license)
910
" Copyright: Copyright (C) 2005-2016 Charles E. Campbell {{{1
1011
" Permission is hereby granted to use and distribute this code,
@@ -30,7 +31,7 @@ set cpo&vim
3031
" ---------------------------------------------------------------------
3132
" Options: {{{1
3233
if !exists("g:zipPlugin_ext")
33-
let g:zipPlugin_ext='*.aar,*.apk,*.celzip,*.crtx,*.docm,*.docx,*.dotm,*.dotx,*.ear,*.epub,*.gcsx,*.glox,*.gqsx,*.ja,*.jar,*.kmz,*.odb,*.odc,*.odf,*.odg,*.odi,*.odm,*.odp,*.ods,*.odt,*.otc,*.otf,*.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.potm,*.potx,*.ppam,*.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.whl,*.wsz,*.xap,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
34+
let g:zipPlugin_ext='*.aar,*.apk,*.celzip,*.crtx,*.docm,*.docx,*.dotm,*.dotx,*.ear,*.epub,*.gcsx,*.glox,*.gqsx,*.ja,*.jar,*.kmz,*.odb,*.odc,*.odf,*.odg,*.odi,*.odm,*.odp,*.ods,*.odt,*.otc,*.otf,*.otg,*.oth,*.oti,*.otp,*.ots,*.ott,*.oxt,*.pkpass,*.potm,*.potx,*.ppam,*.ppsm,*.ppsx,*.pptm,*.pptx,*.sldx,*.thmx,*.vdw,*.war,*.whl,*.wsz,*.xap,*.xlam,*.xlsb,*.xlsm,*.xlsx,*.xltm,*.xltx,*.xpi,*.zip'
3435
endif
3536

3637
" ---------------------------------------------------------------------

0 commit comments

Comments
 (0)