diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 08:37:57 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 08:37:57 +0100 |
commit | b3cf270d1d938ffa9960ccb5e39d5a0ed166f594 (patch) | |
tree | 4ca195f9c15e946b07f9d5c0ed9ba4f8101561cd /doc/de/autogen | |
parent | 8251f1fd13013a93fe441a71695b389f71cb47cb (diff) | |
download | weechat-b3cf270d1d938ffa9960ccb5e39d5a0ed166f594.zip |
core: allow text in addition to a command in command /repeat
Diffstat (limited to 'doc/de/autogen')
-rw-r--r-- | doc/de/autogen/user/weechat_commands.adoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/de/autogen/user/weechat_commands.adoc b/doc/de/autogen/user/weechat_commands.adoc index 57b161278..0c284ec33 100644 --- a/doc/de/autogen/user/weechat_commands.adoc +++ b/doc/de/autogen/user/weechat_commands.adoc @@ -757,14 +757,14 @@ Ohne Angabe von Argumenten werden alle Konfigurationen (WeeChat und Erweiterunge ---- /repeat [-interval <delay>] <count> <command> - delay: Verzögerung zwischen dem Ausführen der Befehle (in Millisekunden) - count: Anzahl wie oft der Befehl ausgeführt werden soll -command: Befehl welcher ausgeführt werden soll (das Befehlszeichen '/' wird automatisch hinzugefügt, falls es zum Befehlsbeginn nicht gefunden werden sollte) + delay: delay between execution of commands (in milliseconds) + count: number of times to execute command +command: command to execute (or text to send to buffer if command does not start with '/') -Alle Befehle werden in dem Buffer ausgeführt, in welchem dieser Befehl genutzt wird. +All commands are executed on buffer where this command was issued. -Beispiel: - scrolle zwei Seiten hoch: +Example: + scroll 2 pages up: /repeat 2 /window page_up ---- |