diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-05-15 08:52:19 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-05-15 08:52:19 +0200 |
commit | b7bdbbdc505879450494bc75b706e2997e25120f (patch) | |
tree | be3b6716c2706a9505278d05ae9cfbec5ffbdac5 /doc/ja/autogen/user/ruby_commands.adoc | |
parent | 81fa60a23a29e3bb6525494587008d75eae44f28 (diff) | |
download | weechat-b7bdbbdc505879450494bc75b706e2997e25120f.zip |
core: rename .asciidoc files to .adoc (issue #722)
Diffstat (limited to 'doc/ja/autogen/user/ruby_commands.adoc')
-rw-r--r-- | doc/ja/autogen/user/ruby_commands.adoc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/ruby_commands.adoc b/doc/ja/autogen/user/ruby_commands.adoc new file mode 100644 index 000000000..3787e31bc --- /dev/null +++ b/doc/ja/autogen/user/ruby_commands.adoc @@ -0,0 +1,25 @@ +// +// This file is auto-generated by script docgen.py. +// DO NOT EDIT BY HAND! +// +[[command_ruby_ruby]] +* `+ruby+`: スクリプトをリストアップ/ロード/アンロード + +---- +/ruby list|listfull [<name>] + load [-q] <filename> + autoload + reload|unload [-q] [<name>] + + list: ロード済みスクリプトをリストアップ +listfull: ロード済みスクリプトをリストアップ (詳細) + load: スクリプトをロード +autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード + reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード) + unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード) +filename: ロードするスクリプト (ファイル) + name: スクリプト名 (名前は "register" 関数を呼び出すために使われる) + -q: 出力抑制モード: メッセージを表示しない + +引数無しの場合、全てのロード済みスクリプトをリストアップします。 +---- |