This commit is contained in:
Antonio Scandurra 2023-04-05 13:59:19 +02:00
parent dcd8bdfc88
commit 908a7cf47e

View file

@ -2833,14 +2833,13 @@ impl Editor {
} }
fn next_copilot_suggestion(&mut self, _: &copilot::NextSuggestion, cx: &mut ViewContext<Self>) { fn next_copilot_suggestion(&mut self, _: &copilot::NextSuggestion, cx: &mut ViewContext<Self>) {
if self.copilot_state.completions.is_empty() { if !self.has_active_copilot_suggestion(cx) {
self.refresh_copilot_suggestions(cx); self.refresh_copilot_suggestions(cx);
return; return;
} }
self.copilot_state.active_completion_index = self.copilot_state.active_completion_index =
(self.copilot_state.active_completion_index + 1) % self.copilot_state.completions.len(); (self.copilot_state.active_completion_index + 1) % self.copilot_state.completions.len();
self.update_visible_copilot_suggestion(cx); self.update_visible_copilot_suggestion(cx);
} }
@ -2849,7 +2848,7 @@ impl Editor {
_: &copilot::PreviousSuggestion, _: &copilot::PreviousSuggestion,
cx: &mut ViewContext<Self>, cx: &mut ViewContext<Self>,
) { ) {
if self.copilot_state.completions.is_empty() { if !self.has_active_copilot_suggestion(cx) {
self.refresh_copilot_suggestions(cx); self.refresh_copilot_suggestions(cx);
return; return;
} }
@ -2860,7 +2859,6 @@ impl Editor {
} else { } else {
self.copilot_state.active_completion_index - 1 self.copilot_state.active_completion_index - 1
}; };
self.update_visible_copilot_suggestion(cx); self.update_visible_copilot_suggestion(cx);
} }