diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-12-23 20:32:03 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-12-23 20:35:30 +0100 |
commit | c4626bc08ab972625cd8ada2a05cfc3b8436a63c (patch) | |
tree | b409176768b49bc4ebe5cea5e277127c0ca9374f /doc/ja/autogen/user/perl_commands.adoc | |
parent | d7122cd6be8095d31a93e30e361ff1bcb31811bc (diff) | |
download | weechat-c4626bc08ab972625cd8ada2a05cfc3b8436a63c.zip |
scripts: add option "version" in script commands (closes #1075)
Diffstat (limited to 'doc/ja/autogen/user/perl_commands.adoc')
-rw-r--r-- | doc/ja/autogen/user/perl_commands.adoc | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/doc/ja/autogen/user/perl_commands.adoc b/doc/ja/autogen/user/perl_commands.adoc index 15c189ddf..924cbb238 100644 --- a/doc/ja/autogen/user/perl_commands.adoc +++ b/doc/ja/autogen/user/perl_commands.adoc @@ -10,16 +10,18 @@ load [-q] <filename> autoload reload|unload [-q] [<name>] + version - list: ロード済みスクリプトをリストアップ -listfull: ロード済みスクリプトをリストアップ (詳細) - load: スクリプトをロード -autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード - reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード) - unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード) -filename: ロードするスクリプト (ファイル) - name: スクリプト名 (名前は "register" 関数を呼び出すために使われる) - -q: 出力抑制モード: メッセージを表示しない + list: list loaded scripts +listfull: list loaded scripts (verbose) + load: load a script +autoload: load all scripts in "autoload" directory + reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) + unload: unload a script (if no name given, unload all scripts) +filename: script (file) to load + name: a script name (name used in call to "register" function) + -q: quiet mode: do not display messages + version: display the version of interpreter used -引数無しの場合、全てのロード済みスクリプトをリストアップします。 +Without argument, this command lists all loaded scripts. ---- |