Fix a completions panic when no fuzzy matches + inline completion (#23019)

My mistake in #22977, in the case where the inline completion was not
selected it set the index to 1 assuming there would be following match
entries.
This commit is contained in:
Michael Sloan
2025-01-12 02:41:28 +00:00
committed by GitHub
parent 5785266c8c
commit 61115bd047
+1 -1
View File
@@ -773,7 +773,7 @@ impl CompletionsMenu {
let mut entries = self.entries.borrow_mut();
if let Some(CompletionEntry::InlineCompletionHint(_)) = entries.first() {
entries.truncate(1);
if inline_completion_was_selected {
if inline_completion_was_selected || matches.is_empty() {
self.selected_item = 0;
} else {
self.selected_item = 1;