diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-23 21:31:22 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-11-23 21:31:22 +0100 |
commit | 53b8cdfef328017b08bc575854d5f6a5ad6ef1d3 (patch) | |
tree | 674e9f63a467b127e0ee6b284925a653afc0f791 /doc/en/autogen/plugin_api | |
parent | 777f977ea516bbf367c01deb7db4120ec70d5839 (diff) | |
download | weechat-53b8cdfef328017b08bc575854d5f6a5ad6ef1d3.zip |
irc: add support of tags in messages, add support of "server-time" capability (task #12255)
For a server called "znc" in WeeChat, following command will enable the
"server-time" capability:
/set irc.server.znc.capabilities "znc.in/server-time"
Diffstat (limited to 'doc/en/autogen/plugin_api')
-rw-r--r-- | doc/en/autogen/plugin_api/infos_hashtable.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/autogen/plugin_api/infos_hashtable.txt b/doc/en/autogen/plugin_api/infos_hashtable.txt index 82de00793..e870dfa67 100644 --- a/doc/en/autogen/plugin_api/infos_hashtable.txt +++ b/doc/en/autogen/plugin_api/infos_hashtable.txt @@ -2,7 +2,7 @@ |======================================== | Plugin | Name | Description | Hashtable (input) | Hashtable (output) -| irc | irc_message_parse | parse an IRC message | "message": IRC message, "server": server name (optional) | "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel) +| irc | irc_message_parse | parse an IRC message | "message": IRC message, "server": server name (optional) | "tags": tags, "message_without_tags": message without the tags, "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel) | irc | irc_message_split | split an IRC message (to fit in 512 bytes) | "message": IRC message, "server": server name (optional) | "msg1" ... "msgN": messages to send (without final "\r\n"), "args1" ... "argsN": arguments of messages, "count": number of messages |