Skip to content

Commit

Permalink
Merge pull request #1968 from h-east/update-pi_getscript
Browse files Browse the repository at this point in the history
Update pi_getscript.{txt,jax}
  • Loading branch information
h-east authored Mar 4, 2025
2 parents 3023a02 + 8924697 commit f6f92b3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
9 changes: 8 additions & 1 deletion doc/pi_getscript.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*pi_getscript.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
*pi_getscript.txt* For Vim バージョン 9.1. Last change: 2025 Feb 28
>
GETSCRIPT REFERENCE MANUAL by Charles E. Campbell
<
Expand Down Expand Up @@ -349,6 +349,10 @@ after/syntax/c/ ディレクトリを使えるようにしています:
g:GetLatestVimScripts_bunzip2
< デフォルト= bunzip2
この変数は .bz2 ファイルを解凍するコマンド名を保持します。
>
g:GetLatestVimScripts_bunzip3
< デフォルト= bunzip3
この変数は .bz3 ファイルを解凍するコマンド名を保持します。
>
g:GetLatestVimScripts_gunzip
< デフォルト= gunzip
Expand Down Expand Up @@ -392,6 +396,8 @@ scriptname を更新します。
Windows: $HOME\vimfiles
if ファイルの拡張子 == ".bz2"
bunzip2 <file>
else if ファイルの拡張子 == ".bz3"
bunzip3 it
else if ファイルの拡張子 == ".gz"
gunzip <file>
そして、
Expand All @@ -406,6 +412,7 @@ scriptname を更新します。
==============================================================================
9. GetLatestVimScripts 開発履歴 *getscript-history* *glvs-hist* {{{1

v38 Feb 25, 2025 : * handles additional decompression option for .bzip3 files.
v37 Sep 23, 2024 : * Support for the new vimball's .vmb extension (old .vba
extension conflicted with visual basic).
* Support for |glvs-autoinstall| in ftplugins and packages.
Expand Down
10 changes: 9 additions & 1 deletion en/pi_getscript.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*pi_getscript.txt* For Vim version 9.1. Last change: 2024 Oct 05
*pi_getscript.txt* For Vim version 9.1. Last change: 2025 Feb 28
>
GETSCRIPT REFERENCE MANUAL by Charles E. Campbell
<
Expand Down Expand Up @@ -361,6 +361,11 @@ after/syntax/c.vim contained in it to overwrite a user's c.vim.
< default= bunzip2
This variable holds the name of the command to decompress .bz2
files
>
g:GetLatestVimScripts_bunzip3
< default= bunzip3
This variable holds the name of the command to decompress .bz3
files
>
g:GetLatestVimScripts_gunzip
< default= gunzip
Expand Down Expand Up @@ -409,6 +414,8 @@ The AutoInstall process will:
Windows: $HOME\vimfiles
if the downloaded file ends with ".bz2"
bunzip2 it
else if the downloaded file ends with ".bz3"
bunzip3 it
else if the downloaded file ends with ".gz"
gunzip it
if the resulting file ends with ".zip"
Expand All @@ -422,6 +429,7 @@ The AutoInstall process will:
==============================================================================
9. GetLatestVimScripts History *getscript-history* *glvs-hist* {{{1

v38 Feb 25, 2025 : * handles additional decompression option for .bzip3 files.
v37 Sep 23, 2024 : * Support for the new vimball's .vmb extension (old .vba
extension conflicted with visual basic).
* Support for |glvs-autoinstall| in ftplugins and packages.
Expand Down

0 comments on commit f6f92b3

Please sign in to comment.