diff options
Diffstat (limited to 'crates/completion/src/completions')
-rw-r--r-- | crates/completion/src/completions/unqualified_path.rs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/crates/completion/src/completions/unqualified_path.rs b/crates/completion/src/completions/unqualified_path.rs index 068b6b407..f376ded57 100644 --- a/crates/completion/src/completions/unqualified_path.rs +++ b/crates/completion/src/completions/unqualified_path.rs | |||
@@ -3,7 +3,7 @@ | |||
3 | use std::iter; | 3 | use std::iter; |
4 | 4 | ||
5 | use either::Either; | 5 | use either::Either; |
6 | use hir::{Adt, AsAssocItem, ModPath, ModuleDef, ScopeDef, Type}; | 6 | use hir::{Adt, ModPath, ModuleDef, ScopeDef, Type}; |
7 | use ide_db::helpers::insert_use::ImportScope; | 7 | use ide_db::helpers::insert_use::ImportScope; |
8 | use ide_db::imports_locator; | 8 | use ide_db::imports_locator; |
9 | use syntax::AstNode; | 9 | use syntax::AstNode; |
@@ -142,15 +142,8 @@ fn fuzzy_completion(acc: &mut Completions, ctx: &CompletionContext) -> Option<() | |||
142 | Some(40), | 142 | Some(40), |
143 | potential_import_name, | 143 | potential_import_name, |
144 | true, | 144 | true, |
145 | true, | ||
145 | ) | 146 | ) |
146 | .filter(|import_candidate| match import_candidate { | ||
147 | Either::Left(ModuleDef::Function(function)) => function.as_assoc_item(ctx.db).is_none(), | ||
148 | Either::Left(ModuleDef::Const(const_)) => const_.as_assoc_item(ctx.db).is_none(), | ||
149 | Either::Left(ModuleDef::TypeAlias(type_alias)) => { | ||
150 | type_alias.as_assoc_item(ctx.db).is_none() | ||
151 | } | ||
152 | _ => true, | ||
153 | }) | ||
154 | .filter_map(|import_candidate| { | 147 | .filter_map(|import_candidate| { |
155 | Some(match import_candidate { | 148 | Some(match import_candidate { |
156 | Either::Left(module_def) => { | 149 | Either::Left(module_def) => { |