Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-db/src/items_locator.rs')
-rw-r--r--crates/ide-db/src/items_locator.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ide-db/src/items_locator.rs b/crates/ide-db/src/items_locator.rs
index 93ea08b700..4a5d234f73 100644
--- a/crates/ide-db/src/items_locator.rs
+++ b/crates/ide-db/src/items_locator.rs
@@ -37,7 +37,8 @@ pub fn items_with_name<'a>(
| NameToImport::Exact(exact_name, case_sensitive) => {
let mut local_query = symbol_index::Query::new(exact_name.clone());
let mut external_query =
- import_map::Query::new(exact_name).assoc_search_mode(assoc_item_search);
+ // import_map::Query::new(exact_name).assoc_search_mode(assoc_item_search);
+ import_map::Query::new(exact_name);
if prefix {
local_query.prefix();
external_query = external_query.prefix();