summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-04-12 08:59:06 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-04-12 08:59:06 +0200
commitdea2960d130eabec29a4a1a178fef4cc0101645d (patch)
tree9ad832254d2e6e75e283bfeb7a397e5d6cffb29c /doc/ja
parentd0d4d2ef5b662ef32b3eb5871172e1fe5f980ed4 (diff)
downloadweechat-dea2960d130eabec29a4a1a178fef4cc0101645d.zip
core: add option "-current" in command /print
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/autogen/user/weechat_commands.txt53
1 files changed, 27 insertions, 26 deletions
diff --git a/doc/ja/autogen/user/weechat_commands.txt b/doc/ja/autogen/user/weechat_commands.txt
index b5bb1f18f..b95e572a1 100644
--- a/doc/ja/autogen/user/weechat_commands.txt
+++ b/doc/ja/autogen/user/weechat_commands.txt
@@ -588,38 +588,39 @@ arguments: ロードするプラグインに与える引数
-stdout|-stderr [<text>]
-beep
--buffer: テキストを表示するバッファ (デフォルト: 現在のバッファ)
- -core: "-buffer core.weechat" のエイリアス
--escape: エスケープ文字を解釈 (例えば \a、\07、\x07)
- -date: メッセージの日付、フォーマット:
- -n: 今から 'n' 秒前
- +n: 今から 'n' 秒後
- n: エポックから 'n' 秒目 (man time を参照)
- 日付/時間 (ISO 8601): yyyy-mm-ddThh:mm:ss、例: 2014-01-19T04:32:55
- 時間: hh:mm:ss (example: 04:32:55)
- -tags: タグのコンマ区切りリスト (よく使うタグのリストは /help filter を参照)
- text: 表示するテキスト (プレフィックスとメッセージは必ず \t で区切ってください、"-" で始まるテキストは "\" を前置してください)
--stdout: 標準出力にテキストを表示 (エスケープ文字を解釈)
--stderr: 標準エラー出力にテキストを表示 (エスケープ文字を解釈)
- -beep: "-stderr \a" の別名
-
-オプション -action ... -quit をつけた場合、プレフィックスは "weechat.look.prefix_*" で定義されているものになります。
-
-以下のエスケープ文字を使うことができます:
+ -buffer: display text in this buffer (default: buffer where command is executed)
+ -core: alias of "-buffer core.weechat"
+-current: display text on current buffer
+ -escape: interpret escaped chars (for example \a, \07, \x07)
+ -date: message date, format can be:
+ -n: 'n' seconds before now
+ +n: 'n' seconds in the future
+ n: 'n' seconds since the Epoch (see man time)
+ date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55
+ time: hh:mm:ss (example: 04:32:55)
+ -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used)
+ text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before)
+ -stdout: display text on stdout (escaped chars are interpreted)
+ -stderr: display text on stderr (escaped chars are interpreted)
+ -beep: alias of "-stderr \a"
+
+The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*".
+
+Following escaped chars are supported:
\" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh
-例:
- コアバッファにハイライトを付けてリマインダを表示:
+Examples:
+ display a reminder on core buffer with a highlight:
/print -core -tags notify_highlight Reminder: buy milk
- コアバッファにエラーを表示:
+ display an error on core buffer:
/print -core -error Some error here
- コアバッファにプレフィックス "abc" を付けてメッセージを表示:
- /print -core abc The message
- チャンネル #weechat にメッセージを表示:
+ display message on core buffer with prefix "abc":
+ /print -core abc\tThe message
+ display a message on channel #weechat:
/print -buffer irc.freenode.#weechat Message on #weechat
- 雪だるまを表示 (U+2603):
+ display a snowman (U+2603):
/print -escape \u2603
- 警告を送信 (BEL):
+ send alert (BEL):
/print -beep
----