Skip to content

Commit 603ecc3

Browse files
authored
Merge pull request #2161 from h-east/update-pi_tar
Update pi_tar.{txt,jax}
2 parents 78a16a0 + c65ce44 commit 603ecc3

File tree

2 files changed

+31
-30
lines changed

2 files changed

+31
-30
lines changed

doc/pi_tar.jax

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
*pi_tar.txt* For Vim バージョン 9.1. Last change: 2025 Mar 16
1+
*pi_tar.txt* For Vim バージョン 9.1. Last change: 2025 Jul 15
22

33
+====================+
44
| Tar File Interface |
55
+====================+
66

7-
Author: Charles E. Campbell <[email protected]>
8-
(まずメールアドレスから NOSPAM を削除する)
7+
Original Author: Charles E. Campbell
98
Copyright 2005-2017: *tar-copyright*
109
The VIM LICENSE (see |copyright|) applies to the files in this
1110
package, including tarPlugin.vim, tar.vim, and pi_tar.txt. Like
@@ -94,23 +93,25 @@ Copyright 2005-2017: *tar-copyright*
9493
*g:tar_readoptions* "OPxf" tar ファイルから抽出するときに使われる
9594
*g:tar_cmd* "tar" tar プログラムの名前
9695
*g:tar_nomax* 0 true ならファイルウィンドウが最大化されない
97-
*g:tar_secure* undef 変数が存在する場合:
98-
"--" を使って、ファイル名がオプション
99-
指定として解釈されるのを防ぐ。
100-
tar コマンドが "--" に対応している必要
101-
がある。Posix 互換の tar なら対応して
102-
いるはずである。
103-
変数が存在しない場合:
104-
tar プラグインは "-" で始まる tar ファ
105-
イルまたは中のファイルを受け付けない。
106-
すべての tar が "--" をサポートしているわけ
107-
ではないので、これがデフォルトではない。
10896
*g:tar_writeoptions* "uf" ファイルを更新/置換するときに使われる
10997

11098

11199
==============================================================================
112100
4. 開発履歴 *tar-history*
113101

102+
unreleased:
103+
Jul 13, 2025 * drop leading /
104+
May 19, 2025 * restore working directory after read/write
105+
Apr 16, 2025 * decouple from netrw by adding s:WinPath()
106+
instead of shelling out to file(1)
107+
Mar 02, 2025 * determine the compression using readblob()
108+
Mar 02, 2025 * escape the filename before using :read
109+
Mar 01, 2025 * fix syntax error in tar#Read()
110+
Feb 28, 2025 * add support for bzip3 (#16755)
111+
Feb 06, 2025 * add support for lz4 (#16591)
112+
Nov 11, 2024 * support permissions (#7379)
113+
Feb 19, 2024 * announce adoption
114+
Jan 08, 2024 * fix a few problems (#138331, #12637, #8109)
114115
v31 Apr 02, 2017 * (klartext) reported that browsing encrypted
115116
files in a zip archive created unencrypted
116117
swap files. I am applying a similar fix

en/pi_tar.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
*pi_tar.txt* For Vim version 9.1. Last change: 2025 Mar 16
1+
*pi_tar.txt* For Vim version 9.1. Last change: 2025 Jul 15
22

33
+====================+
44
| Tar File Interface |
55
+====================+
66

7-
Author: Charles E. Campbell <[email protected]>
8-
(remove NOSPAM from Campbell's email first)
7+
Original Author: Charles E. Campbell
98
Copyright 2005-2017: *tar-copyright*
109
The VIM LICENSE (see |copyright|) applies to the files in this
1110
package, including tarPlugin.vim, tar.vim, and pi_tar.txt. Like
@@ -61,7 +60,7 @@ Copyright 2005-2017: *tar-copyright*
6160
the file mentioned in the tarball. If the current directory is not
6261
correct for that path, :TarDiff will fail to find the associated file.
6362

64-
If the [filename] is given, that that filename (and path) will be used
63+
If the [filename] is given, that filename (and path) will be used
6564
to specify the associated file.
6665

6766

@@ -95,24 +94,25 @@ Copyright 2005-2017: *tar-copyright*
9594
*g:tar_readoptions* "OPxf" used to extract a file from a tarball
9695
*g:tar_cmd* "tar" the name of the tar program
9796
*g:tar_nomax* 0 if true, file window will not be maximized
98-
*g:tar_secure* undef if exists:
99-
"--"s will be used to prevent unwanted
100-
option expansion in tar commands.
101-
Please be sure that your tar command
102-
accepts "--"; Posix compliant tar
103-
utilities do accept them.
104-
if not exists:
105-
The tar plugin will reject any tar
106-
files or member files that begin with
107-
"-"
108-
Not all tar's support the "--" which is why
109-
it isn't default.
11097
*g:tar_writeoptions* "uf" used to update/replace a file
11198

11299

113100
==============================================================================
114101
4. History *tar-history*
115102

103+
unreleased:
104+
Jul 13, 2025 * drop leading /
105+
May 19, 2025 * restore working directory after read/write
106+
Apr 16, 2025 * decouple from netrw by adding s:WinPath()
107+
instead of shelling out to file(1)
108+
Mar 02, 2025 * determine the compression using readblob()
109+
Mar 02, 2025 * escape the filename before using :read
110+
Mar 01, 2025 * fix syntax error in tar#Read()
111+
Feb 28, 2025 * add support for bzip3 (#16755)
112+
Feb 06, 2025 * add support for lz4 (#16591)
113+
Nov 11, 2024 * support permissions (#7379)
114+
Feb 19, 2024 * announce adoption
115+
Jan 08, 2024 * fix a few problems (#138331, #12637, #8109)
116116
v31 Apr 02, 2017 * (klartext) reported that browsing encrypted
117117
files in a zip archive created unencrypted
118118
swap files. I am applying a similar fix

0 commit comments

Comments
 (0)