Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pi_getscript.{txt,jax} #1990

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions 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: 2025 Feb 28
*pi_getscript.txt* For Vim バージョン 9.1. Last change: 2025 Mar 15
>
GETSCRIPT REFERENCE MANUAL by Charles E. Campbell
<
Expand Down Expand Up @@ -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: 解凍コマンドに関連付けられた変数は、クロスプラットフォームの問題を回避す
Expand Down
18 changes: 9 additions & 9 deletions en/pi_getscript.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down