summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-03-19 19:13:41 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-03-19 19:13:41 +0100
commit63b474013ef683dad09fa64c2a701031d34300ca (patch)
tree5a19aaa1f1fbf6e757f31f9f3d27e4c4c2d77456 /doc/ja/autogen/user
parent9b380a935b9fe07daf7e1e1f0ad12a41519bb10c (diff)
downloadweechat-63b474013ef683dad09fa64c2a701031d34300ca.zip
irc: add command /allpv (task #13111)
Diffstat (limited to 'doc/ja/autogen/user')
-rw-r--r--doc/ja/autogen/user/irc_commands.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/irc_commands.txt b/doc/ja/autogen/user/irc_commands.txt
index c1588b4d6..be1b98935 100644
--- a/doc/ja/autogen/user/irc_commands.txt
+++ b/doc/ja/autogen/user/irc_commands.txt
@@ -27,6 +27,28 @@ arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそ
/allchan -exclude=#weechat,#linux* msg * hello
----
+[[command_irc_allpv]]
+[command]*`allpv`* execute a command on all private buffers of all connected servers::
+
+----
+/allpv [-current] [-exclude=<nick>[,<nick>...]] <command> [<arguments>]
+
+ -current: execute command for private buffers of current server only
+ -exclude: exclude some nicks ('*' is allowed at beginning or end of nick name, to exclude many nicks)
+ command: command to execute
+arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value)
+
+Examples:
+ execute '/me is testing' on all private buffers:
+ /allpv me is testing
+ say 'hello' everywhere but not for nick foo:
+ /allpv -exclude=foo msg * hello
+ say 'hello' everywhere but not for nick foo and nicks beginning with bar:
+ /allpv -exclude=foo,bar* msg * hello
+ close all private buffers:
+ /allpv close
+----
+
[[command_irc_allserv]]
[command]*`allserv`* 全ての接続済みサーバでコマンドを実行::