diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-21 18:57:49 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-21 18:57:49 +0200 |
commit | 129f32ce8ed0fb6d8b37ed945455144bd83ce95a (patch) | |
tree | 2c3d13d11fdf260df5a1949884eb4fc3061ccaf4 /doc/ja/autogen/user/ruby_commands.txt | |
parent | cc5118b3b6726d8fc8bf087eea59e474a838896b (diff) | |
download | weechat-129f32ce8ed0fb6d8b37ed945455144bd83ce95a.zip |
script: add option script.look.quiet_actions (no messages when installing/removing/loading/unloading scripts on script buffer)
Diffstat (limited to 'doc/ja/autogen/user/ruby_commands.txt')
-rw-r--r-- | doc/ja/autogen/user/ruby_commands.txt | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/doc/ja/autogen/user/ruby_commands.txt b/doc/ja/autogen/user/ruby_commands.txt index e4ac63e3c..d4bf50f81 100644 --- a/doc/ja/autogen/user/ruby_commands.txt +++ b/doc/ja/autogen/user/ruby_commands.txt @@ -2,19 +2,20 @@ [command]*`ruby`* スクリプトをリストアップ/ロード/アンロード:: ........................................ /ruby list|listfull [<name>] - load <filename> + load [-q] <filename> autoload - reload|unload [<name>] + reload|unload [-q] [<name>] - list: ロード済みスクリプトをリストアップ -listfull: ロード済みスクリプトをリストアップ (詳細) - load: スクリプトをロード -autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード - reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード) - unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード) -filename: ロードするスクリプト (ファイル) - name: スクリプト名 (名前は "register" 関数を呼び出すために使われる) + 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 -引数無しの場合、全てのロード済みスクリプトをリストアップする。 +Without argument, this command lists all loaded scripts. ........................................ |