Skip to content

Commit c07530c

Browse files
committed
Add preference modifier for workspace-local crates when using auto import.
1 parent c1b0516 commit c07530c

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

src/tools/rust-analyzer/crates/ide-assists/src/handlers/auto_import.rs

+46-1
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,10 @@ fn module_distance_heuristic(db: &dyn HirDatabase, current: &Module, item: &Modu
272272
// cost of importing from another crate
273273
let crate_boundary_cost = if current.krate() == item.krate() {
274274
0
275-
} else if item.krate().is_builtin(db) {
275+
} else if item.krate().origin(db).is_local() {
276276
2
277+
} else if item.krate().is_builtin(db) {
278+
3
277279
} else {
278280
4
279281
};
@@ -365,6 +367,49 @@ pub struct HashMap;
365367
)
366368
}
367369

370+
#[test]
371+
fn prefer_workspace() {
372+
let before = r"
373+
//- /main.rs crate:main deps:foo,bar
374+
HashMap$0::new();
375+
376+
//- /lib.rs crate:foo
377+
pub mod module {
378+
pub struct HashMap;
379+
}
380+
381+
//- /lib.rs crate:bar library
382+
pub struct HashMap;
383+
";
384+
385+
check_auto_import_order(before, &["Import `foo::module::HashMap`", "Import `bar::HashMap`"])
386+
}
387+
388+
#[test]
389+
fn prefer_non_local_over_long_path() {
390+
let before = r"
391+
//- /main.rs crate:main deps:foo,bar
392+
HashMap$0::new();
393+
394+
//- /lib.rs crate:foo
395+
pub mod deeply {
396+
pub mod nested {
397+
pub mod module {
398+
pub struct HashMap;
399+
}
400+
}
401+
}
402+
403+
//- /lib.rs crate:bar library
404+
pub struct HashMap;
405+
";
406+
407+
check_auto_import_order(
408+
before,
409+
&["Import `bar::HashMap`", "Import `foo::deeply::nested::module::HashMap`"],
410+
)
411+
}
412+
368413
#[test]
369414
fn not_applicable_if_scope_inside_macro() {
370415
check_assist_not_applicable(

0 commit comments

Comments
 (0)