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/ja/autogen/user | |
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/ja/autogen/user')
-rw-r--r-- | doc/ja/autogen/user/weechat_commands.adoc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/ja/autogen/user/weechat_commands.adoc b/doc/ja/autogen/user/weechat_commands.adoc index 5ac4e4313..caf79e098 100644 --- a/doc/ja/autogen/user/weechat_commands.adoc +++ b/doc/ja/autogen/user/weechat_commands.adoc @@ -944,22 +944,22 @@ path_to_binary: WeeChat バイナリへのパス (デフォルトは現在のバ ---- /wait <number>[<unit>] <command> - number: 遅延時間 (整数) - unit: 任意、値は: - ms: ミリ秒 - s: 秒 (デフォルト) - m: 分 - h: 時 -command: 実行するコマンド (コマンドが '/' で始まらない場合はバッファに送信するテキスト) + 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 '/') -注意: コマンドは /wait が実行されたバッファで実行されます (バッファが見つからない場合 (例えばコマンド実行前にバッファが閉じられた場合) は、コマンドは 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). -例: - 10 秒後にチャンネルに入る: +Examples: + join channel in 10 seconds: /wait 10 /join #test - 15 分後に離席状態に変更: + set away in 15 minutes: /wait 15m /away -all I'm away - 2 分後に 'hello' と発言: + say 'hello' in 2 minutes: /wait 2m hello ---- |