diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_ide/src/completion.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index 9c33a5a43..a537b68b1 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs | |||
@@ -21,19 +21,19 @@ mod complete_trait_impl; | |||
21 | mod unstable_feature_descriptor; | 21 | mod unstable_feature_descriptor; |
22 | use ra_ide_db::RootDatabase; | 22 | use ra_ide_db::RootDatabase; |
23 | 23 | ||
24 | #[rustfmt::skip] | ||
24 | use crate::{ | 25 | use crate::{ |
25 | completion::{ | 26 | completion::{ |
26 | completion_context::CompletionContext, | 27 | completion_context::CompletionContext, |
27 | completion_item::{CompletionKind, Completions}, | 28 | completion_item::{CompletionKind, Completions}, |
29 | |||
30 | //TODO: cyclic imports caused by xtask generation, this should be better | ||
31 | unstable_feature_descriptor::UNSTABLE_FEATURE_DESCRIPTOR, | ||
32 | complete_attribute::LintCompletion, | ||
28 | }, | 33 | }, |
29 | FilePosition, | 34 | FilePosition, |
30 | }; | 35 | }; |
31 | 36 | ||
32 | //FIXME: cyclic imports caused by xtask generation, this should be better | ||
33 | use crate::completion::{ | ||
34 | complete_attribute::LintCompletion, unstable_feature_descriptor::UNSTABLE_FEATURE_DESCRIPTOR, | ||
35 | }; | ||
36 | |||
37 | pub use crate::completion::{ | 37 | pub use crate::completion::{ |
38 | completion_config::CompletionConfig, | 38 | completion_config::CompletionConfig, |
39 | completion_item::{CompletionItem, CompletionItemKind, CompletionScore, InsertTextFormat}, | 39 | completion_item::{CompletionItem, CompletionItemKind, CompletionScore, InsertTextFormat}, |