diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-09-09 21:32:58 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-09-09 21:32:58 +0200 |
commit | 91d32be93c5e77315498d7f0cd3028ab36ff229c (patch) | |
tree | 48cb017e4471d44ba289761cf3327c13aa802cc6 /doc/de | |
parent | a76eedcd1f22018892f8555a15e7b2e92a497e46 (diff) | |
download | weechat-91d32be93c5e77315498d7f0cd3028ab36ff229c.zip |
core: add options "-o", "-ol", "-i" and "-il" in command "/plugin list"
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/includes/autogen_user_commands.de.adoc | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/doc/de/includes/autogen_user_commands.de.adoc b/doc/de/includes/autogen_user_commands.de.adoc index f9d994130..8f3ca0ebb 100644 --- a/doc/de/includes/autogen_user_commands.de.adoc +++ b/doc/de/includes/autogen_user_commands.de.adoc @@ -1743,23 +1743,28 @@ Beispiele: * `+plugin+`: Erweiterungen verwalten (auflisten/installieren/beenden) ---- -/plugin list|listfull [<name>] +/plugin list [-o|-ol|-i|-il|<name>] + listfull [<name>] load <filename> [<arguments>] autoload [<arguments>] reload [<name>|* [<arguments>]] unload [<name>] - list: installierte Erweiterungen werden aufgelistet - listfull: detaillierte Auflistung aller installierten Erweiterungen - load: installiert eine Erweiterung - autoload: installiert automatisch alle Erweiterungen aus dem System- oder Benutzerverzeichnis - reload: startet eine Erweiterung erneut (falls kein Name angegeben wird, werden alle Erweiterungen beendet und neu gestartet) - unload: beendet eine oder alle Erweiterungen (wird kein Name angegeben dann werden alle Erweiterung beendet) - filename: Erweiterung (Datei) welche installiert werden soll - name: Name einer Erweiterung -arguments: Argumente die der Erweiterung beim installieren übergeben werden sollen - -Ohne Angabe eines Arguments werden alle installierten Erweiterungen angezeigt. + list: list loaded plugins + -o: send list of loaded plugins to buffer (string in English) + -ol: send list of loaded plugins to buffer (translated string) + -i: copy list of loaded plugins in command line (for sending to buffer) (string in English) + -il: copy list of loaded plugins in command line (for sending to buffer) (translated string) + name: a plugin name + listfull: list loaded plugins (verbose) + load: load a plugin + filename: plugin (file) to load +arguments: arguments given to plugin on load + autoload: autoload plugins in system or user directory + reload: reload a plugin (if no name given, unload all plugins, then autoload plugins) + unload: unload a plugin (if no name given, unload all plugins) + +Without argument, this command lists loaded plugins. ---- [[command_weechat_print]] |