1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

ox: add jid autocompletion for /ox request

This commit is contained in:
Michael Vetter 2022-05-02 10:23:24 +02:00
parent 22064b3a28
commit 95686eb642

View File

@ -2605,6 +2605,11 @@ _ox_autocomplete(ProfWin* window, const char* const input, gboolean previous)
if (found) {
return found;
}
found = autocomplete_param_with_func(input, "/ox request", roster_barejid_autocomplete, previous, NULL);
if (found) {
return found;
}
}
found = autocomplete_param_with_ac(input, "/ox log", ox_log_ac, TRUE, previous);