diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-27 20:52:00 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-27 20:52:00 +0200 |
commit | ae38b114072858ca4cd21d8492c54a2ae592d196 (patch) | |
tree | 6cdea623841c7cc3b75f5670b0b71e523c4cfada /doc/en/autogen | |
parent | 3f33b327b139a90c100aff5c36d4684faa6e48c6 (diff) | |
download | weechat-ae38b114072858ca4cd21d8492c54a2ae592d196.zip |
irc: add "user" in output of irc_message_parse (closes #136)
Diffstat (limited to 'doc/en/autogen')
-rw-r--r-- | doc/en/autogen/plugin_api/infos_hashtable.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/autogen/plugin_api/infos_hashtable.adoc b/doc/en/autogen/plugin_api/infos_hashtable.adoc index b13412c36..e62bb6621 100644 --- a/doc/en/autogen/plugin_api/infos_hashtable.adoc +++ b/doc/en/autogen/plugin_api/infos_hashtable.adoc @@ -6,7 +6,7 @@ |=== | Plugin | Name | Description | Hashtable (input) | Hashtable (output) -| 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), "text": text (for example user message), "pos_command": index of "command" message ("-1" if "command" was not found), "pos_arguments": index of "arguments" message ("-1" if "arguments" was not found), "pos_channel": index of "channel" message ("-1" if "channel" was not found), "pos_text": index of "text" message ("-1" if "text" was not found) +| 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, "user": user, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel), "text": text (for example user message), "pos_command": index of "command" message ("-1" if "command" was not found), "pos_arguments": index of "arguments" message ("-1" if "arguments" was not found), "pos_channel": index of "channel" message ("-1" if "channel" was not found), "pos_text": index of "text" message ("-1" if "text" was not found) | irc | irc_message_split | split an IRC message (to fit in 512 bytes by default) | "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 |