diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-05 22:47:12 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-05 22:47:12 +0000 |
commit | fddd0416b9136fadcfe2667f7a485d50c0150f1a (patch) | |
tree | 855c62e216c85d1816e0c27c2a11c4104e3211de /src/plugins/scripts/ruby | |
parent | 8e436c58cd2d2d914b93521263007d31e171ec18 (diff) | |
download | weechat-fddd0416b9136fadcfe2667f7a485d50c0150f1a.zip |
Added event handlers in plugin list commands outputs (/plugin and script commands)
Diffstat (limited to 'src/plugins/scripts/ruby')
-rw-r--r-- | src/plugins/scripts/ruby/weechat-ruby.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/plugins/scripts/ruby/weechat-ruby.c b/src/plugins/scripts/ruby/weechat-ruby.c index ec00ff9e3..d275ec5a1 100644 --- a/src/plugins/scripts/ruby/weechat-ruby.c +++ b/src/plugins/scripts/ruby/weechat-ruby.c @@ -2452,6 +2452,25 @@ weechat_ruby_cmd (t_weechat_plugin *plugin, if (!handler_found) plugin->print_server (plugin, " (none)"); + /* list Ruby event handlers */ + plugin->print_server (plugin, ""); + plugin->print_server (plugin, "Ruby 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 => Ruby(%s)", + ptr_handler->event, + ptr_handler->handler_args); + } + } + if (!handler_found) + plugin->print_server (plugin, " (none)"); + /* list Ruby modifiers */ plugin->print_server (plugin, ""); plugin->print_server (plugin, "Ruby modifiers:"); |