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/en/autogen/user/ruby_commands.adoc | |
parent | 81fa60a23a29e3bb6525494587008d75eae44f28 (diff) | |
download | weechat-b7bdbbdc505879450494bc75b706e2997e25120f.zip |
core: rename .asciidoc files to .adoc (issue #722)
Diffstat (limited to 'doc/en/autogen/user/ruby_commands.adoc')
-rw-r--r-- | doc/en/autogen/user/ruby_commands.adoc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/en/autogen/user/ruby_commands.adoc b/doc/en/autogen/user/ruby_commands.adoc new file mode 100644 index 000000000..751a36b4e --- /dev/null +++ b/doc/en/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+`: list/load/unload scripts + +---- +/ruby list|listfull [<name>] + load [-q] <filename> + autoload + reload|unload [-q] [<name>] + + 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. +---- |