From a374bed9b5ad5f49d42ed8216b406316c7289fe3 Mon Sep 17 00:00:00 2001 From: h-east Date: Sat, 15 Mar 2025 17:49:20 +0900 Subject: [PATCH] Update pi_getscript.{txt,jax} --- doc/pi_getscript.jax | 16 ++++++++-------- en/pi_getscript.txt | 18 +++++++++--------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/doc/pi_getscript.jax b/doc/pi_getscript.jax index 877a13166..ec02121a1 100644 --- a/doc/pi_getscript.jax +++ b/doc/pi_getscript.jax @@ -1,4 +1,4 @@ -*pi_getscript.txt* For Vim バージョン 9.1. Last change: 2025 Feb 28 +*pi_getscript.txt* For Vim バージョン 9.1. Last change: 2025 Mar 15 > GETSCRIPT REFERENCE MANUAL by Charles E. Campbell < @@ -337,33 +337,33 @@ after/syntax/c/ ディレクトリを使えるようにしています: vimball のインストールには適用されません。 > g:GetLatestVimScripts_scriptaddr -< デフォルト='https://www.vim.org/scripts/script.php?script_id=' +< デフォルト='https://www.vim.org/scripts/script.php?script_id=' あなたのシステムで設定が必要な場合に上書きしてください。 ... ='http://vim.sourceforge.net/script.php?script_id=' > g:GetLatestVimScripts_downloadaddr -< デフォルト='https://www.vim.org/scripts/download_script.php?src_id=' +< デフォルト='https://www.vim.org/scripts/download_script.php?src_id=' あなたのシステムで設定が必要な場合に上書きしてください。 ... ='http://vim.sourceforge.net/scripts/download_script.php?src_id=' > g:GetLatestVimScripts_bunzip2 -< デフォルト= bunzip2 +< デフォルト= bunzip2 この変数は .bz2 ファイルを解凍するコマンド名を保持します。 > g:GetLatestVimScripts_bunzip3 -< デフォルト= bunzip3 +< デフォルト= bunzip3 この変数は .bz3 ファイルを解凍するコマンド名を保持します。 > g:GetLatestVimScripts_gunzip -< デフォルト= gunzip +< デフォルト= gunzip この変数は .bz ファイルを解凍するコマンド名を保持します。 > g:GetLatestVimScripts_unxz -< デフォルト= unxz +< デフォルト= unxz この変数は .xz ファイルを解凍するコマンド名を保持します。 > g:GetLatestVimScripts_unzip -< デフォルト= unzip +< デフォルト= unzip この変数は .zip ファイルを解凍するコマンド名を保持します。 Note: 解凍コマンドに関連付けられた変数は、クロスプラットフォームの問題を回避す diff --git a/en/pi_getscript.txt b/en/pi_getscript.txt index d4f595f8e..72abb717d 100644 --- a/en/pi_getscript.txt +++ b/en/pi_getscript.txt @@ -348,43 +348,43 @@ after/syntax/c.vim contained in it to overwrite a user's c.vim. Doesn't override vimball installation. > g:GetLatestVimScripts_scriptaddr -< default='https://www.vim.org/scripts/script.php?script_id=' +< default='https://www.vim.org/scripts/script.php?script_id=' Override this if your system needs ... ='http://vim.sourceforge.net/script.php?script_id=' > g:GetLatestVimScripts_downloadaddr -< default='https://www.vim.org/scripts/download_script.php?src_id=' +< default='https://www.vim.org/scripts/download_script.php?src_id=' Override this if your system needs ... ='http://vim.sourceforge.net/scripts/download_script.php?src_id=' > g:GetLatestVimScripts_bunzip2 -< default= bunzip2 +< default= bunzip2 This variable holds the name of the command to decompress .bz2 files > g:GetLatestVimScripts_bunzip3 -< default= bunzip3 +< default= bunzip3 This variable holds the name of the command to decompress .bz3 files > g:GetLatestVimScripts_gunzip -< default= gunzip +< default= gunzip This variable holds the name of the command to decompress .gz files > g:GetLatestVimScripts_unxz -< default= unxz +< default= unxz This variable holds the name of the command to decompress .xz files > g:GetLatestVimScripts_unzip -< default= unzip +< default= unzip This variable holds the name of the command to decompress .zip files Note: The variables associated with decompression commands help workaround - crossplatform issues. For example, on Windows is possible to delegate this - calls into `wsl` by doing: > + crossplatform issues. For example, on Windows is possible to delegate + this calls into `wsl` by doing: > let g:GetLatestVimScripts_bunzip2= "wsl -e bunzip2" let g:GetLatestVimScripts_gunzip= "wsl -e gunzip"