diff options
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/completion/complete_scope.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_scope.rs b/crates/ra_ide_api/src/completion/complete_scope.rs index c1f48b026..cb70a1f21 100644 --- a/crates/ra_ide_api/src/completion/complete_scope.rs +++ b/crates/ra_ide_api/src/completion/complete_scope.rs | |||
@@ -1,4 +1,4 @@ | |||
1 | use ra_assists::auto_import; | 1 | use ra_assists::auto_import_text_edit; |
2 | use ra_syntax::{ast, AstNode, SmolStr}; | 2 | use ra_syntax::{ast, AstNode, SmolStr}; |
3 | use ra_text_edit::TextEditBuilder; | 3 | use ra_text_edit::TextEditBuilder; |
4 | use rustc_hash::FxHashMap; | 4 | use rustc_hash::FxHashMap; |
@@ -23,7 +23,7 @@ pub(super) fn complete_scope(acc: &mut Completions, ctx: &CompletionContext) { | |||
23 | let edit = { | 23 | let edit = { |
24 | let mut builder = TextEditBuilder::default(); | 24 | let mut builder = TextEditBuilder::default(); |
25 | builder.replace(ctx.source_range(), name.to_string()); | 25 | builder.replace(ctx.source_range(), name.to_string()); |
26 | auto_import::auto_import_text_edit( | 26 | auto_import_text_edit( |
27 | &ctx.token.parent(), | 27 | &ctx.token.parent(), |
28 | &ctx.token.parent(), | 28 | &ctx.token.parent(), |
29 | &path, | 29 | &path, |