mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Merge branch 'master' into osx-functional
This commit is contained in:
commit
315575bd4a
@ -49,12 +49,21 @@ autocompleters_init(void)
|
|||||||
void
|
void
|
||||||
autocompleters_add(const char *key, char **items)
|
autocompleters_add(const char *key, char **items)
|
||||||
{
|
{
|
||||||
Autocomplete new_ac = autocomplete_new();
|
if (g_hash_table_contains(autocompleters, key)) {
|
||||||
int i = 0;
|
Autocomplete existing_ac = g_hash_table_lookup(autocompleters, key);
|
||||||
for (i = 0; i < g_strv_length(items); i++) {
|
|
||||||
autocomplete_add(new_ac, items[i]);
|
int i = 0;
|
||||||
|
for (i = 0; i < g_strv_length(items); i++) {
|
||||||
|
autocomplete_add(existing_ac, items[i]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Autocomplete new_ac = autocomplete_new();
|
||||||
|
int i = 0;
|
||||||
|
for (i = 0; i < g_strv_length(items); i++) {
|
||||||
|
autocomplete_add(new_ac, items[i]);
|
||||||
|
}
|
||||||
|
g_hash_table_insert(autocompleters, strdup(key), new_ac);
|
||||||
}
|
}
|
||||||
g_hash_table_insert(autocompleters, strdup(key), new_ac);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
@ -108,7 +108,7 @@ plugins_run_command(const char * const input)
|
|||||||
PluginCommand *command = p_command->data;
|
PluginCommand *command = p_command->data;
|
||||||
if (g_strcmp0(split[0], command->command_name) == 0) {
|
if (g_strcmp0(split[0], command->command_name) == 0) {
|
||||||
gboolean result;
|
gboolean result;
|
||||||
gchar **args = parse_args(input, command->min_args, command->max_args, &result);
|
gchar **args = parse_args_with_freetext(input, command->min_args, command->max_args, &result);
|
||||||
if (result == FALSE) {
|
if (result == FALSE) {
|
||||||
ui_invalid_command_usage(command->command_name, NULL);
|
ui_invalid_command_usage(command->command_name, NULL);
|
||||||
g_strfreev(split);
|
g_strfreev(split);
|
||||||
|
Loading…
Reference in New Issue
Block a user