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/it/weechat_scripting.it.adoc | |
parent | 3f33b327b139a90c100aff5c36d4684faa6e48c6 (diff) | |
download | weechat-ae38b114072858ca4cd21d8492c54a2ae592d196.zip |
irc: add "user" in output of irc_message_parse (closes #136)
Diffstat (limited to 'doc/it/weechat_scripting.it.adoc')
-rw-r--r-- | doc/it/weechat_scripting.it.adoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/it/weechat_scripting.it.adoc b/doc/it/weechat_scripting.it.adoc index 6ca3a307d..e4f3d0b85 100644 --- a/doc/it/weechat_scripting.it.adoc +++ b/doc/it/weechat_scripting.it.adoc @@ -1190,6 +1190,11 @@ The result is a hashtable with following keys The origin nick. | `nick` +// TRANSLATION MISSING +| user | ≥ 2.7 | + The origin user. | + `user` + | host | ≥ 0.3.4 | The origin host (includes the nick). | `nick!user@host` @@ -1237,6 +1242,7 @@ dict = weechat.info_get_hashtable( # "tags": "time=2015-06-27T16:40:35.000Z", # "message_without_tags": ":nick!user@host PRIVMSG #weechat :hello!", # "nick": "nick", +# "user": "user", # "host": "nick!user@host", # "command": "PRIVMSG", # "channel": "#weechat", |