1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-15 19:38:07 -04:00

Merge pull request #1655 from profanity-im/win-autocomplete

Reset url autocompletion after open/save
This commit is contained in:
Michael Vetter 2022-03-24 20:30:40 +01:00 committed by GitHub
commit 409268e2b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);