mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
Show case-insensitive exact matches instead of fuzzy flyimport for short paths
This commit is contained in:
parent
c469f8abcb
commit
143a30aa51
6 changed files with 55 additions and 33 deletions
|
@ -96,25 +96,29 @@ fn main() {
|
|||
|
||||
#[test]
|
||||
fn short_paths_are_ignored() {
|
||||
cov_mark::check!(ignore_short_input_for_path);
|
||||
cov_mark::check!(flyimport_exact_on_short_path);
|
||||
|
||||
check(
|
||||
r#"
|
||||
//- /lib.rs crate:dep
|
||||
pub struct FirstStruct;
|
||||
pub struct Bar;
|
||||
pub struct Rcar;
|
||||
pub struct Rc;
|
||||
pub mod some_module {
|
||||
pub struct SecondStruct;
|
||||
pub struct ThirdStruct;
|
||||
pub struct Bar;
|
||||
pub struct Rcar;
|
||||
pub struct Rc;
|
||||
}
|
||||
|
||||
//- /main.rs crate:main deps:dep
|
||||
use dep::{FirstStruct, some_module::SecondStruct};
|
||||
|
||||
fn main() {
|
||||
t$0
|
||||
rc$0
|
||||
}
|
||||
"#,
|
||||
expect![[r#""#]],
|
||||
expect![[r#"
|
||||
st Rc (use dep::Rc)
|
||||
st Rc (use dep::some_module::Rc)
|
||||
"#]],
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -772,7 +776,7 @@ mod foo {
|
|||
}
|
||||
|
||||
fn main() {
|
||||
TE$0
|
||||
TES$0
|
||||
}"#,
|
||||
expect![[r#"
|
||||
ct TEST_CONST (use foo::TEST_CONST)
|
||||
|
@ -789,7 +793,7 @@ mod foo {
|
|||
}
|
||||
|
||||
fn main() {
|
||||
te$0
|
||||
tes$0
|
||||
}"#,
|
||||
expect![[r#"
|
||||
ct TEST_CONST (use foo::TEST_CONST)
|
||||
|
@ -846,7 +850,7 @@ struct Foo {
|
|||
some_field: i32,
|
||||
}
|
||||
fn main() {
|
||||
let _ = Foo { some_field: so$0 };
|
||||
let _ = Foo { some_field: som$0 };
|
||||
}
|
||||
"#,
|
||||
expect![[r#"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue