diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 20:37:18 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 20:37:18 +0100 |
commit | 2571d17cb97e70114d671705ead2e53a96031ca2 (patch) | |
tree | 02ce7403a9d9df76925af5141d3ae3b90c99ace0 /doc/it/autogen | |
parent | f1d18f4c26b6dd72286f86b93da25567d932b6e4 (diff) | |
download | weechat-2571d17cb97e70114d671705ead2e53a96031ca2.zip |
core: don't execute command scheduled by /wait if the buffer does not exist any more
Diffstat (limited to 'doc/it/autogen')
-rw-r--r-- | doc/it/autogen/user/weechat_commands.adoc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/it/autogen/user/weechat_commands.adoc b/doc/it/autogen/user/weechat_commands.adoc index f32eedf29..591f48a6f 100644 --- a/doc/it/autogen/user/weechat_commands.adoc +++ b/doc/it/autogen/user/weechat_commands.adoc @@ -944,23 +944,23 @@ The default alias /v can be used to execute this command on all buffers (otherwi ---- /wait <numero>[<unità>] <comando> - numero: tempo di attesa (numero intero) - unità: valori opzionali sono: - ms: millisecondi - s: secondi (predefinito) - m: minuti - h: ore -comando: comando da eseguire (o testo da inviare al buffer se il comando non inizia con '/') + number: amount of time to wait (integer number) + unit: optional, values are: + ms: milliseconds + s: seconds (default) + m: minutes + h: hours +command: command to execute (or text to send to buffer if command does not start with '/') -Nota: il comando viene eseguito sui buffer dove /wait è stato eseguito (se il buffer non viene trovato (per esempio se è stato chiuso prima dell'esecuzione), allora il comando verrà eseguito sul buffer core di WeeChat) +Note: the command is executed on buffer where /wait was executed (if the buffer does not exist any more, the command is not executed). -Esempi: - entra nel canale tra 10 secondi: +Examples: + join channel in 10 seconds: /wait 10 /join #test - imposta assenza tra 15 minuti: - /wait 15m /away -all Sono assente - scrive 'ciao' tra 2 minuti: - /wait 2m ciao + set away in 15 minutes: + /wait 15m /away -all I'm away + say 'hello' in 2 minutes: + /wait 2m hello ---- [[command_weechat_window]] |