summaryrefslogtreecommitdiff
path: root/doc/de/autogen/user/ruby_commands.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2012-08-21 18:57:49 +0200
committerSebastien Helleu <flashcode@flashtux.org>2012-08-21 18:57:49 +0200
commit129f32ce8ed0fb6d8b37ed945455144bd83ce95a (patch)
tree2c3d13d11fdf260df5a1949884eb4fc3061ccaf4 /doc/de/autogen/user/ruby_commands.txt
parentcc5118b3b6726d8fc8bf087eea59e474a838896b (diff)
downloadweechat-129f32ce8ed0fb6d8b37ed945455144bd83ce95a.zip
script: add option script.look.quiet_actions (no messages when installing/removing/loading/unloading scripts on script buffer)
Diffstat (limited to 'doc/de/autogen/user/ruby_commands.txt')
-rw-r--r--doc/de/autogen/user/ruby_commands.txt23
1 files changed, 12 insertions, 11 deletions
diff --git a/doc/de/autogen/user/ruby_commands.txt b/doc/de/autogen/user/ruby_commands.txt
index 79e74db27..9a0ef616f 100644
--- a/doc/de/autogen/user/ruby_commands.txt
+++ b/doc/de/autogen/user/ruby_commands.txt
@@ -2,19 +2,20 @@
[command]*`ruby`* auflisten/installieren/deinstallieren von Skripten::
........................................
/ruby list|listfull [<name>]
- load <filename>
+ load [-q] <filename>
autoload
- reload|unload [<name>]
+ reload|unload [-q] [<name>]
- list: installierte Skripten werden aufgelistet
-listfull: detaillierte Auflistung aller installierten Skripten
- load: installiert ein Skript
-autoload: installiert automatisch alle Skripten aus dem "autoload" Verzeichnis
- reload: ein Skript wird erneut installiert (wird kein Name angegeben, dann werden alle Skripten entfernt und erneut installiert)
- unload: deinstalliert ein Skript (wird kein Name angegeben, dann werden alle Skripten deinstalliert)
-filename: Skript (Datei) welches geladen werden soll
- name: Name eines Skriptes (der Name der in der "register" Funktion der Skript-API genutzt wird)
+ 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
-Ohne Angabe eines Argumentes listet dieser Befehl alle geladenen Skripten auf.
+Without argument, this command lists all loaded scripts.
........................................