diff options
author | Kirill Bulatov <[email protected]> | 2020-11-30 20:28:19 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-12-07 21:41:08 +0000 |
commit | 6d2d27938985e210d5b5e561df8a48be20343be7 (patch) | |
tree | 511e624608a4b79c8020d41425ecdaa30186891f /crates/ide | |
parent | 48acd7d455be43960d67632adc9eb176a10a8afe (diff) |
Working resolve completion imports prototype
Diffstat (limited to 'crates/ide')
-rw-r--r-- | crates/ide/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ide/src/lib.rs b/crates/ide/src/lib.rs index 5244bdd61..7015a5126 100644 --- a/crates/ide/src/lib.rs +++ b/crates/ide/src/lib.rs | |||
@@ -80,7 +80,8 @@ pub use crate::{ | |||
80 | }, | 80 | }, |
81 | }; | 81 | }; |
82 | pub use completion::{ | 82 | pub use completion::{ |
83 | CompletionConfig, CompletionItem, CompletionItemKind, CompletionScore, InsertTextFormat, | 83 | CompletionConfig, CompletionItem, CompletionItemKind, CompletionScore, ImportToAdd, |
84 | InsertTextFormat, | ||
84 | }; | 85 | }; |
85 | pub use ide_db::{ | 86 | pub use ide_db::{ |
86 | call_info::CallInfo, | 87 | call_info::CallInfo, |