mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1655 from profanity-im/win-autocomplete
Reset url autocompletion after open/save
This commit is contained in:
commit
409268e2b6
@ -9294,6 +9294,8 @@ cmd_url_open(ProfWin* window, const char* const command, gchar** args)
|
||||
_url_external_method(cmd_template, url, NULL);
|
||||
|
||||
out:
|
||||
// reset autocompletion to start from latest url and not where we left of
|
||||
autocomplete_reset(window->urls_ac);
|
||||
|
||||
free(cmd_template);
|
||||
free(filename);
|
||||
@ -9350,6 +9352,8 @@ cmd_url_save(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
|
||||
out:
|
||||
// reset autocompletion to start from latest url and not where we left of
|
||||
autocomplete_reset(window->urls_ac);
|
||||
|
||||
free(filename);
|
||||
free(cmd_template);
|
||||
|
Loading…
Reference in New Issue
Block a user