mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 01:16:21 +00:00
Allow previous autocompletion with shift tab
This commit is contained in:
@@ -96,15 +96,15 @@ accounts_close(void)
|
||||
}
|
||||
|
||||
char*
|
||||
accounts_find_enabled(const char *const prefix)
|
||||
accounts_find_enabled(const char *const prefix, gboolean previous)
|
||||
{
|
||||
return autocomplete_complete(enabled_ac, prefix, TRUE);
|
||||
return autocomplete_complete(enabled_ac, prefix, TRUE, previous);
|
||||
}
|
||||
|
||||
char*
|
||||
accounts_find_all(const char *const prefix)
|
||||
accounts_find_all(const char *const prefix, gboolean previous)
|
||||
{
|
||||
return autocomplete_complete(all_ac, prefix, TRUE);
|
||||
return autocomplete_complete(all_ac, prefix, TRUE, previous);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user