File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
- *pi_getscript.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
1
+ *pi_getscript.txt* For Vim バージョン 9.1. Last change: 2025 Feb 28
2
2
>
3
3
GETSCRIPT REFERENCE MANUAL by Charles E. Campbell
4
4
<
@@ -349,6 +349,10 @@ after/syntax/c/ ディレクトリを使えるようにしています:
349
349
g:GetLatestVimScripts_bunzip2
350
350
< デフォルト= bunzip2
351
351
この変数は .bz2 ファイルを解凍するコマンド名を保持します。
352
+ >
353
+ g:GetLatestVimScripts_bunzip3
354
+ < デフォルト= bunzip3
355
+ この変数は .bz3 ファイルを解凍するコマンド名を保持します。
352
356
>
353
357
g:GetLatestVimScripts_gunzip
354
358
< デフォルト= gunzip
@@ -392,6 +396,8 @@ scriptname を更新します。
392
396
Windows: $HOME\vimfiles
393
397
if ファイルの拡張子 == ".bz2"
394
398
bunzip2 <file>
399
+ else if ファイルの拡張子 == ".bz3"
400
+ bunzip3 it
395
401
else if ファイルの拡張子 == ".gz"
396
402
gunzip <file>
397
403
そして、
@@ -406,6 +412,7 @@ scriptname を更新します。
406
412
==============================================================================
407
413
9. GetLatestVimScripts 開発履歴 *getscript-history* *glvs-hist* {{{1
408
414
415
+ v38 Feb 25, 2025 : * handles additional decompression option for .bzip3 files.
409
416
v37 Sep 23, 2024 : * Support for the new vimball's .vmb extension (old .vba
410
417
extension conflicted with visual basic).
411
418
* Support for | glvs-autoinstall | in ftplugins and packages.
Original file line number Diff line number Diff line change 1
- *pi_getscript.txt* For Vim version 9.1. Last change: 2024 Oct 05
1
+ *pi_getscript.txt* For Vim version 9.1. Last change: 2025 Feb 28
2
2
>
3
3
GETSCRIPT REFERENCE MANUAL by Charles E. Campbell
4
4
<
@@ -361,6 +361,11 @@ after/syntax/c.vim contained in it to overwrite a user's c.vim.
361
361
< default= bunzip2
362
362
This variable holds the name of the command to decompress .bz2
363
363
files
364
+ >
365
+ g:GetLatestVimScripts_bunzip3
366
+ < default= bunzip3
367
+ This variable holds the name of the command to decompress .bz3
368
+ files
364
369
>
365
370
g:GetLatestVimScripts_gunzip
366
371
< default= gunzip
@@ -409,6 +414,8 @@ The AutoInstall process will:
409
414
Windows: $HOME\vimfiles
410
415
if the downloaded file ends with ".bz2"
411
416
bunzip2 it
417
+ else if the downloaded file ends with ".bz3"
418
+ bunzip3 it
412
419
else if the downloaded file ends with ".gz"
413
420
gunzip it
414
421
if the resulting file ends with ".zip"
@@ -422,6 +429,7 @@ The AutoInstall process will:
422
429
==============================================================================
423
430
9. GetLatestVimScripts History *getscript-history* *glvs-hist* {{{1
424
431
432
+ v38 Feb 25, 2025 : * handles additional decompression option for .bzip3 files.
425
433
v37 Sep 23, 2024 : * Support for the new vimball's .vmb extension (old .vba
426
434
extension conflicted with visual basic).
427
435
* Support for | glvs-autoinstall | in ftplugins and packages.
You can’t perform that action at this time.
0 commit comments