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-11 19:41:28 -07:00 committed by GitHub
parent 5785266c8c
commit 61115bd047
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;