Fix a completions panic when no fuzzy matches + inline completion (#23019)
Michael Sloan
created
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.
Change summary
crates/editor/src/code_context_menus.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -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;