summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/python/weechat-python.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2007-02-05 22:47:12 +0000
committerSebastien Helleu <flashcode@flashtux.org>2007-02-05 22:47:12 +0000
commitfddd0416b9136fadcfe2667f7a485d50c0150f1a (patch)
tree855c62e216c85d1816e0c27c2a11c4104e3211de /src/plugins/scripts/python/weechat-python.c
parent8e436c58cd2d2d914b93521263007d31e171ec18 (diff)
downloadweechat-fddd0416b9136fadcfe2667f7a485d50c0150f1a.zip
Added event handlers in plugin list commands outputs (/plugin and script commands)
Diffstat (limited to 'src/plugins/scripts/python/weechat-python.c')
-rw-r--r--src/plugins/scripts/python/weechat-python.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/plugins/scripts/python/weechat-python.c b/src/plugins/scripts/python/weechat-python.c
index fba55d097..4c204c51a 100644
--- a/src/plugins/scripts/python/weechat-python.c
+++ b/src/plugins/scripts/python/weechat-python.c
@@ -2291,6 +2291,25 @@ weechat_python_cmd (t_weechat_plugin *plugin,
}
if (!handler_found)
plugin->print_server (plugin, " (none)");
+
+ /* list Python event handlers */
+ plugin->print_server (plugin, "");
+ plugin->print_server (plugin, "Python event handlers:");
+ handler_found = 0;
+ for (ptr_handler = plugin->handlers;
+ ptr_handler; ptr_handler = ptr_handler->next_handler)
+ {
+ if ((ptr_handler->type == PLUGIN_HANDLER_EVENT)
+ && (ptr_handler->handler_args))
+ {
+ handler_found = 1;
+ plugin->print_server (plugin, " %s => Python(%s)",
+ ptr_handler->event,
+ ptr_handler->handler_args);
+ }
+ }
+ if (!handler_found)
+ plugin->print_server (plugin, " (none)");
/* list Python modifiers */
plugin->print_server (plugin, "");