diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-02-04 22:12:19 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-02-04 22:12:19 +0100 |
commit | 7d433b798fecc7002bb132e206a23d57fb89cb28 (patch) | |
tree | 3055a66310906b143ad92d90c3bd32b9403cdf75 /doc/en/autogen/user/lua_commands.txt | |
parent | 63b8aa1f23249e132b975dfaf2089a9fe2dc1464 (diff) | |
download | weechat-7d433b798fecc7002bb132e206a23d57fb89cb28.zip |
Improve arguments displayed in /help of commands, display all commands with same name (for same command name in many plugins)
Diffstat (limited to 'doc/en/autogen/user/lua_commands.txt')
-rw-r--r-- | doc/en/autogen/user/lua_commands.txt | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/doc/en/autogen/user/lua_commands.txt b/doc/en/autogen/user/lua_commands.txt index 433382222..35dc5e5a9 100644 --- a/doc/en/autogen/user/lua_commands.txt +++ b/doc/en/autogen/user/lua_commands.txt @@ -1,11 +1,19 @@ -• *`/lua`* `[list [name]] | [listfull [name]] | [load filename] | [autoload] | [reload [name]] | [unload [name]]`:: - +[command]*`lua`* list/load/unload scripts:: ........................................ - list/load/unload scripts +/lua list|listfull [<name>] + load <filename> + autoload + reload|unload [<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) - filename: script (file) to load - name: a script name - - Without argument, this command lists all loaded scripts. +Without argument, this command lists all loaded scripts. ........................................ |