Skip to content

Commit 16f0b2f

Browse files
Actually enable eager completion
1 parent d4128be commit 16f0b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ pub(crate) fn handle_completion(
573573
.flat_map(|item| to_proto::completion_item(&line_index, line_endings, item))
574574
.collect();
575575

576-
let completion_list = lsp_types::CompletionList { is_incomplete: false, items };
576+
let completion_list = lsp_types::CompletionList { is_incomplete: true, items };
577577
Ok(Some(completion_list.into()))
578578
}
579579

0 commit comments

Comments
 (0)