Skip to content

Commit 1eda1ae

Browse files
committed
Auto merge of #17308 - mathew-horner:prefer-workspace, r=Veykril
Add preference modifier for workspace-local crates when using auto import. `@joshka` pointed out some odd behavior of auto import ordering. It doesn't seem that the current heuristics were applying any sort of precedence to imports from the workspace. I've went ahead and added that. I hope to get some feedback on the modifier numbers here. I just went with something that felt like it balanced giving more power to workspace crates without completely ignoring relative path distance. closes rust-lang/rust-analyzer#17303
2 parents 07034ff + c07530c commit 1eda1ae

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)