diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-19 19:13:41 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-19 19:13:41 +0100 |
commit | 63b474013ef683dad09fa64c2a701031d34300ca (patch) | |
tree | 5a19aaa1f1fbf6e757f31f9f3d27e4c4c2d77456 /doc/it/autogen | |
parent | 9b380a935b9fe07daf7e1e1f0ad12a41519bb10c (diff) | |
download | weechat-63b474013ef683dad09fa64c2a701031d34300ca.zip |
irc: add command /allpv (task #13111)
Diffstat (limited to 'doc/it/autogen')
-rw-r--r-- | doc/it/autogen/user/irc_commands.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/it/autogen/user/irc_commands.txt b/doc/it/autogen/user/irc_commands.txt index 2fb651258..88e152f8a 100644 --- a/doc/it/autogen/user/irc_commands.txt +++ b/doc/it/autogen/user/irc_commands.txt @@ -27,6 +27,28 @@ Examples: /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`* esegue un comando su tutti i server connessi:: |