mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +00:00
Actually enable eager completion
This commit is contained in:
parent
d4128beb3d
commit
16f0b2fdde
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ pub(crate) fn handle_completion(
|
|||
.flat_map(|item| to_proto::completion_item(&line_index, line_endings, item))
|
||||
.collect();
|
||||
|
||||
let completion_list = lsp_types::CompletionList { is_incomplete: false, items };
|
||||
let completion_list = lsp_types::CompletionList { is_incomplete: true, items };
|
||||
Ok(Some(completion_list.into()))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue