Refresh copilot suggestions when hitting alt-] if none are showing

Co-Authored-By: Mikayla Maki <mikayla@zed.dev>
This commit is contained in:
Antonio Scandurra 2023-03-27 17:16:10 +02:00 committed by Mikayla Maki
parent d236d9e8c9
commit 034bc75467

View file

@ -2834,6 +2834,7 @@ impl Editor {
fn next_copilot_suggestion(&mut self, _: &copilot::NextSuggestion, cx: &mut ViewContext<Self>) {
if self.copilot_state.completions.is_empty() {
self.refresh_copilot_suggestions(cx);
return;
}