Reset url autocompletion after open/save

I guess we should reset the position after we ran `/url open|save`.
So that next time `/url open <tab>` starts with the latest entry.

Fix https://github.com/profanity-im/profanity/issues/1654
This commit is contained in:
Michael Vetter
2022-03-22 12:58:39 +01:00
parent 5ea7186c27
commit 923af3ba38

View File

@@ -9292,6 +9292,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);
@@ -9348,6 +9350,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);