summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-03-08 23:13:58 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-03-08 23:13:58 +0100
commit9fdeef247e4c6fe506355211743c653bba083aaa (patch)
tree9ad9cc6a563ddf594676139ec217c609aad4d5ef /doc/en
parentfced67b45984cf59fd833bf9ef69223f4c432b58 (diff)
downloadweechat-9fdeef247e4c6fe506355211743c653bba083aaa.zip
core: add signals and hsignals for nicklist events
New signals: nicklist_group_removing and nicklist_nick_removing. New hsignals: nicklist_group_added, nicklist_nick_added, nicklist_group_removing, nicklist_nick_removing, nicklist_group_changed, nicklist_nick_changed.
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/weechat_plugin_api.en.txt62
1 files changed, 58 insertions, 4 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt
index c83461dc7..bba3f6147 100644
--- a/doc/en/weechat_plugin_api.en.txt
+++ b/doc/en/weechat_plugin_api.en.txt
@@ -7896,6 +7896,11 @@ Arguments:
string: buffer pointer + "," + group name |
group changed in nicklist
+| weechat | nicklist_group_removing +
+ (_new in version 0.4.1_) |
+ string: buffer pointer + "," + group name |
+ removing group from nicklist
+
| weechat | nicklist_group_removed +
(_new in version 0.3.2_) |
string: buffer pointer + "," + group name |
@@ -7911,6 +7916,11 @@ Arguments:
string: buffer pointer + "," + nick name |
nick changed in nicklist
+| weechat | nicklist_nick_removing +
+ (_new in version 0.4.1_) |
+ string: buffer pointer + "," + nick name |
+ removing nick from nicklist
+
| weechat | nicklist_nick_removed +
(_new in version 0.3.2_) |
string: buffer pointer + "," + nick name |
@@ -8286,12 +8296,56 @@ Arguments:
* 'signal': signal to catch, can begin or end with "*"
(priority allowed, see note about <<hook_priority,priority>>):
-[width="100%",cols="^1,^3,5",options="header"]
+[width="100%",cols="^1,^3,5,5",options="header"]
|========================================
-| Plugin | Signal | Arguments
+| Plugin | Signal | Arguments | Description
+
+| irc | irc_redirection_xxx_yyy ^(1)^ +
+ (_new in version 0.3.4_) |
+ see <<hsignal_irc_redirect_command,hsignal_irc_redirect_command>> |
+ redirection output
+
+| weechat | nicklist_group_added +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'group' ('struct t_gui_nick_group *'): group |
+ group added in nicklist
+
+| weechat | nicklist_nick_added +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'nick' ('struct t_gui_nick *'): nick |
+ nick added in nicklist
+
+| weechat | nicklist_group_removing +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'group' ('struct t_gui_nick_group *'): group |
+ removing group from nicklist
+
+| weechat | nicklist_nick_removing +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'nick' ('struct t_gui_nick *'): nick |
+ removing nick from nicklist
-| irc | irc_redirection_xxx_yyy ^(1)^ |
- redirection output (see <<hsignal_irc_redirect_command>>)
+| weechat | nicklist_group_changed +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'group' ('struct t_gui_nick_group *'): group |
+ group changed in nicklist
+
+| weechat | nicklist_nick_changed +
+ (_new in version 0.4.1_) |
+ 'buffer' ('struct t_gui_buffer *'): buffer +
+ 'parent_group' ('struct t_gui_nick_group *'): parent group +
+ 'nick' ('struct t_gui_nick *'): nick |
+ nick changed in nicklist
|========================================
[NOTE]