diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-11-16 16:28:43 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-16 16:28:43 +0000 |
commit | 0a658c4a973d934d622957a6fb03916271496385 (patch) | |
tree | e2e2a0206bc45c6351eb3f6ed8f5b0755d444fb5 | |
parent | 789d9ca1d32afd55c7cb8d0db45652048abd7341 (diff) | |
parent | 682dd4dac0cf003998359d5fe8551daa126e50f6 (diff) |
Merge #6565
6565: Prepare to recompute completions on every keystroke r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r-- | crates/rust-analyzer/src/handlers.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index 782797e85..4d1ebf6bf 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs | |||
@@ -573,7 +573,8 @@ pub(crate) fn handle_completion( | |||
573 | .flat_map(|item| to_proto::completion_item(&line_index, line_endings, item)) | 573 | .flat_map(|item| to_proto::completion_item(&line_index, line_endings, item)) |
574 | .collect(); | 574 | .collect(); |
575 | 575 | ||
576 | Ok(Some(items.into())) | 576 | let completion_list = lsp_types::CompletionList { is_incomplete: false, items }; |
577 | Ok(Some(completion_list.into())) | ||
577 | } | 578 | } |
578 | 579 | ||
579 | pub(crate) fn handle_folding_range( | 580 | pub(crate) fn handle_folding_range( |