Skip to content

Commit d7a71e6

Browse files
authored
Merge pull request #1186 from tsuyoshicho/update/20221030/pix
Update pi_{tar,zip}.{txt,jax}
2 parents fac04ce + 2a570b6 commit d7a71e6

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

doc/pi_tar.jax

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*pi_tar.txt* For Vim バージョン 9.0. Last change: 2020 Jan 07
1+
*pi_tar.txt* For Vim バージョン 9.0. Last change: 2022 Oct 17
22

33
+====================+
44
| Tar File Interface |
@@ -78,12 +78,12 @@ Copyright 2005-2017: *tar-copyright*
7878
3. オプション *tar-options*
7979

8080
これらの変数を <.vimrc> ファイルなどで設定してください。
81-
変数 初期設定 説明
81+
変数 初期設定 説明
8282
*g:tar_browseoptions* "Ptf" ファイル一覧を取得するときに使われる
83-
*g:tar_readoptions* "OPxf" tar ファイルを展開するときに使われる
84-
*g:tar_cmd* "tar" tar プログラムの名前
85-
*g:tar_nomax* 0 trueならファイルウィンドウが最大化されない
86-
*g:tar_secure* undef 変数が存在する場合:
83+
*g:tar_readoptions* "OPxf" tar ファイルを展開するときに使われる
84+
*g:tar_cmd* "tar" tar プログラムの名前
85+
*g:tar_nomax* 0 trueならファイルウィンドウが最大化されない
86+
*g:tar_secure* undef 変数が存在する場合:
8787
"--" を使って、ファイル名がオプション
8888
指定として解釈されるのを防ぎます。
8989
tar コマンドが "--" に対応している必要

doc/pi_zip.jax

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*pi_zip.txt* For Vim バージョン 9.0. Last change: 2021 Nov 08
1+
*pi_zip.txt* For Vim バージョン 9.0. Last change: 2022 Oct 17
22

33
+====================+
44
| Zip File Interface |
@@ -38,7 +38,7 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
3838

3939
オプション~
4040

41-
*g:zip_nomax*
41+
*g:zip_nomax*
4242

4343
この変数が存在し、その値が真なら、ファイルを開いたときにウィンドウを最大化
4444
しません。
@@ -52,20 +52,20 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
5252
です。クォート自体をしたくない場合は <.vimrc> の中で g:zip_shq に空文字を設
5353
定してください (let g:zip_shq = "")。
5454

55-
*g:zip_unzipcmd*
55+
*g:zip_unzipcmd*
5656
"unzip" として使用するプログラムを指定します。これはブラウジングに使用され
5757
ます。初期設定: >
58-
let g:zip_unzipcmd= "unzip"
58+
let g:zip_unzipcmd= "unzip"
5959
<
6060
*g:zip_zipcmd*
6161
"zip" として使用するプログラムを指定します。これは zip ファイルを保存する
6262
(更新する) ときに使用されます。初期設定: >
63-
let g:zip_zipcmd= "zip"
63+
let g:zip_zipcmd= "zip"
6464
<
6565
*g:zip_extractcmd*
6666
このオプションは zip アーカイブからファイルを解凍する為のプログラム(とそれ
6767
に必要なオプション)を指定します。初期設定: >
68-
let g:zip_extractcmd= g:zip_unzipcmd
68+
let g:zip_extractcmd= g:zip_unzipcmd
6969
<
7070
ロードの無効化~
7171

@@ -98,14 +98,14 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
9898
==============================================================================
9999
4. 開発履歴 *zip-history* {{{1
100100
v32 Oct 22, 2021 * to avoid an issue with a vim 8.2 patch, zipfile: has
101-
been changed to zipfile:// . This often shows up
101+
been changed to zipfile:// . This often shows up
102102
as zipfile:/// with zipped files that are root-based.
103103
v29 Apr 02, 2017 * (Klartext) reported that an encrypted zip file could
104-
opened but the swapfile held unencrypted contents.
104+
opened but the swapfile held unencrypted contents.
105105
The solution is to edit the contents of a zip file
106106
using the |:noswapfile| modifier.
107107
v28 Oct 08, 2014 * changed the sanity checks for executables to reflect
108-
the command actually to be attempted in zip#Read()
108+
the command actually to be attempted in zip#Read()
109109
and zip#Write()
110110
* added the extraction of a file capability
111111
Nov 30, 2015 * added *.epub to the |g:zipPlugin_ext| list

en/pi_tar.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*pi_tar.txt* For Vim version 9.0. Last change: 2020 Jan 07
1+
*pi_tar.txt* For Vim version 9.0. Last change: 2022 Oct 17
22

33
+====================+
44
| Tar File Interface |
@@ -80,20 +80,20 @@ Copyright 2005-2017: *tar-copyright*
8080

8181
These options are variables that one may change, typically in one's
8282
<.vimrc> file.
83-
Default
84-
Variable Value Explanation
83+
Default
84+
Variable Value Explanation
8585
*g:tar_browseoptions* "Ptf" used to get a list of contents
86-
*g:tar_readoptions* "OPxf" used to extract a file from a tarball
87-
*g:tar_cmd* "tar" the name of the tar program
88-
*g:tar_nomax* 0 if true, file window will not be maximized
89-
*g:tar_secure* undef if exists:
86+
*g:tar_readoptions* "OPxf" used to extract a file from a tarball
87+
*g:tar_cmd* "tar" the name of the tar program
88+
*g:tar_nomax* 0 if true, file window will not be maximized
89+
*g:tar_secure* undef if exists:
9090
"--"s will be used to prevent unwanted
9191
option expansion in tar commands.
9292
Please be sure that your tar command
9393
accepts "--"; Posix compliant tar
9494
utilities do accept them.
9595
if not exists:
96-
The tar plugin will reject any tar
96+
The tar plugin will reject any tar
9797
files or member files that begin with
9898
"-"
9999
Not all tar's support the "--" which is why

en/pi_zip.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*pi_zip.txt* For Vim version 9.0. Last change: 2021 Nov 08
1+
*pi_zip.txt* For Vim version 9.0. Last change: 2022 Oct 17
22

33
+====================+
44
| Zip File Interface |
@@ -39,7 +39,7 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
3939

4040
OPTIONS~
4141

42-
*g:zip_nomax*
42+
*g:zip_nomax*
4343

4444
If this variable exists and is true, the file window will not be
4545
automatically maximized when opened.
@@ -54,21 +54,21 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
5454
under Windows ("). If you'd rather have no quotes, simply set
5555
g:zip_shq to the empty string (let g:zip_shq= "") in your <.vimrc>.
5656

57-
*g:zip_unzipcmd*
57+
*g:zip_unzipcmd*
5858
Use this option to specify the program which does the duty of "unzip".
5959
It's used during browsing. By default: >
60-
let g:zip_unzipcmd= "unzip"
60+
let g:zip_unzipcmd= "unzip"
6161
<
6262
*g:zip_zipcmd*
6363
Use this option to specify the program which does the duty of "zip".
6464
It's used during the writing (updating) of a file already in a zip
6565
file; by default: >
66-
let g:zip_zipcmd= "zip"
66+
let g:zip_zipcmd= "zip"
6767
<
6868
*g:zip_extractcmd*
6969
This option specifies the program (and any options needed) used to
7070
extract a file from a zip archive. By default, >
71-
let g:zip_extractcmd= g:zip_unzipcmd
71+
let g:zip_extractcmd= g:zip_unzipcmd
7272
<
7373
PREVENTING LOADING~
7474

@@ -103,14 +103,14 @@ Copyright: Copyright (C) 2005-2015 Charles E Campbell *zip-copyright*
103103
==============================================================================
104104
4. History *zip-history* {{{1
105105
v32 Oct 22, 2021 * to avoid an issue with a vim 8.2 patch, zipfile: has
106-
been changed to zipfile:// . This often shows up
106+
been changed to zipfile:// . This often shows up
107107
as zipfile:/// with zipped files that are root-based.
108108
v29 Apr 02, 2017 * (Klartext) reported that an encrypted zip file could
109-
opened but the swapfile held unencrypted contents.
109+
opened but the swapfile held unencrypted contents.
110110
The solution is to edit the contents of a zip file
111111
using the |:noswapfile| modifier.
112112
v28 Oct 08, 2014 * changed the sanity checks for executables to reflect
113-
the command actually to be attempted in zip#Read()
113+
the command actually to be attempted in zip#Read()
114114
and zip#Write()
115115
* added the extraction of a file capability
116116
Nov 30, 2015 * added *.epub to the |g:zipPlugin_ext| list

0 commit comments

Comments
 (0)