1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

Add function "hook_completion_get_string" in plugin API

This commit is contained in:
Sebastien Helleu
2010-11-09 15:45:14 +01:00
parent 25879ca189
commit 8c129779ac
10 changed files with 224 additions and 6 deletions
+1
View File
@@ -592,6 +592,7 @@ plugin_load (const char *filename)
new_plugin->hook_hsignal_send = &hook_hsignal_send;
new_plugin->hook_config = &hook_config;
new_plugin->hook_completion = &hook_completion;
new_plugin->hook_completion_get_string = &hook_completion_get_string;
new_plugin->hook_completion_list_add = &hook_completion_list_add;
new_plugin->hook_modifier = &hook_modifier;
new_plugin->hook_modifier_exec = &hook_modifier_exec;