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/de/autogen/user/tcl_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/de/autogen/user/tcl_commands.txt')
-rw-r--r-- | doc/de/autogen/user/tcl_commands.txt | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/doc/de/autogen/user/tcl_commands.txt b/doc/de/autogen/user/tcl_commands.txt index 8ad57bbf9..eb2d8f060 100644 --- a/doc/de/autogen/user/tcl_commands.txt +++ b/doc/de/autogen/user/tcl_commands.txt @@ -1,11 +1,19 @@ -• *`/tcl`* `[list [Name]] | [listfull [Name]] | [load Dateiname] | [autoload] | [reload [Name]] | [unload [Name]]`:: - +[command]*`tcl`* auflisten/installieren/deinstallieren von Skripten:: ........................................ - auflisten/installieren/deinstallieren von Skripten +/tcl 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: Skript/Datei welches geladen werden soll - name: Name des Skripts - - Wird der Befehl ohne Argumente aufgerufen werden alle geladenen Skripten aufgelistet. +Without argument, this command lists all loaded scripts. ........................................ |