1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 00:03:12 +02:00

api: add function completion_set

This commit is contained in:
Sébastien Helleu
2025-02-15 23:22:44 +01:00
parent 1b54cd24ed
commit c7d21a3ea6
25 changed files with 577 additions and 16 deletions
+20
View File
@@ -4814,6 +4814,26 @@ API_FUNC(completion_get_string)
API_RETURN_STRING(result);
}
API_FUNC(completion_set)
{
zend_string *z_completion, *z_property, *z_value;
struct t_gui_completion *completion;
char *property, *value;
API_INIT_FUNC(1, "completion_set", API_RETURN_ERROR);
if (zend_parse_parameters (ZEND_NUM_ARGS(), "SSS", &z_completion,
&z_property, &z_value) == FAILURE)
API_WRONG_ARGS(API_RETURN_ERROR);
completion = (struct t_gui_completion *)API_STR2PTR(ZSTR_VAL(z_completion));
property = ZSTR_VAL(z_property);
value = ZSTR_VAL(z_value);
weechat_completion_set (completion, (const char *)property, (const char *)value);
API_RETURN_OK;
}
API_FUNC(completion_list_add)
{
zend_string *z_completion, *z_word, *z_where;