summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/ruby_commands.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2012-08-21 18:57:49 +0200
committerSebastien Helleu <flashcode@flashtux.org>2012-08-21 18:57:49 +0200
commit129f32ce8ed0fb6d8b37ed945455144bd83ce95a (patch)
tree2c3d13d11fdf260df5a1949884eb4fc3061ccaf4 /doc/ja/autogen/user/ruby_commands.txt
parentcc5118b3b6726d8fc8bf087eea59e474a838896b (diff)
downloadweechat-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.txt23
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.
........................................