mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
PGP: Added key ID autocompletion to /account setting
This commit is contained in:
parent
cb19be2ffc
commit
4b0ee89fa3
@ -3609,6 +3609,15 @@ _account_autocomplete(ProfWin *window, const char * const input)
|
||||
g_strfreev(args);
|
||||
return found;
|
||||
}
|
||||
} else if ((g_strv_length(args) > 3) && (g_strcmp0(args[2], "pgpkeyid")) == 0) {
|
||||
g_string_append(beginning, " ");
|
||||
g_string_append(beginning, args[2]);
|
||||
found = autocomplete_param_with_func(input, beginning->str, p_gpg_autocomplete_key);
|
||||
g_string_free(beginning, TRUE);
|
||||
if (found) {
|
||||
g_strfreev(args);
|
||||
return found;
|
||||
}
|
||||
} else {
|
||||
found = autocomplete_param_with_ac(input, beginning->str, account_set_ac, TRUE);
|
||||
g_string_free(beginning, TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user