diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
commit | 7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f (patch) | |
tree | 14c5dc3f56986cf763bd5354b1ad6bb47e9516f4 /doc/en/autogen/user/irc_commands.adoc | |
parent | ac007a1efd987bd318cc016cbdcfbe59aadf0dc9 (diff) | |
download | weechat-7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f.zip |
core: update translations and auto-generated doc files
Diffstat (limited to 'doc/en/autogen/user/irc_commands.adoc')
-rw-r--r-- | doc/en/autogen/user/irc_commands.adoc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/en/autogen/user/irc_commands.adoc b/doc/en/autogen/user/irc_commands.adoc index 1137e380a..1e24d62c9 100644 --- a/doc/en/autogen/user/irc_commands.adoc +++ b/doc/en/autogen/user/irc_commands.adoc @@ -16,9 +16,11 @@ target: server name ---- /allchan [-current] [-exclude=<channel>[,<channel>...]] <command> [<arguments>] + [-current] -include=<channel>[,<channel>...] <command> [<arguments>] -current: execute command for channels of current server only -exclude: exclude some channels (wildcard "*" is allowed) + -include: include only some channels (wildcard "*" is allowed) command: command to execute arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) @@ -29,6 +31,8 @@ Examples: /allchan -exclude=#weechat msg * hello say 'hello' everywhere but not on #weechat and channels beginning with #linux: /allchan -exclude=#weechat,#linux* msg * hello + say 'hello' on all channels beginning with #linux: + /allchan -include=#linux* msg * hello ---- [[command_irc_allpv]] @@ -36,9 +40,11 @@ Examples: ---- /allpv [-current] [-exclude=<nick>[,<nick>...]] <command> [<arguments>] + [-current] -include=<nick>[,<nick>...] <command> [<arguments>] -current: execute command for private buffers of current server only -exclude: exclude some nicks (wildcard "*" is allowed) + -include: include only some nicks (wildcard "*" is allowed) command: command to execute arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) @@ -49,6 +55,8 @@ Examples: /allpv -exclude=foo msg * hello say 'hello' everywhere but not for nick foo and nicks beginning with bar: /allpv -exclude=foo,bar* msg * hello + say 'hello' for all nicks beginning with bar: + /allpv -include=bar* msg * hello close all private buffers: /allpv close ---- @@ -58,8 +66,10 @@ Examples: ---- /allserv [-exclude=<server>[,<server>...]] <command> [<arguments>] + -include=<server>[,<server>...] <command> [<arguments>] -exclude: exclude some servers (wildcard "*" is allowed) + -include: include only some servers (wildcard "*" is allowed) command: command to execute arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) |