mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 17:53:56 +00:00
Forbid flyimport completions in use statements
This commit is contained in:
parent
a3e4f07a83
commit
d7f182bd30
@ -68,7 +68,10 @@ pub(crate) fn import_on_the_fly(acc: &mut Completions, ctx: &CompletionContext)
|
|||||||
if !ctx.config.enable_imports_on_the_fly {
|
if !ctx.config.enable_imports_on_the_fly {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
if ctx.attribute_under_caret.is_some() || ctx.mod_declaration_under_caret.is_some() {
|
if ctx.use_item_syntax.is_some()
|
||||||
|
|| ctx.attribute_under_caret.is_some()
|
||||||
|
|| ctx.mod_declaration_under_caret.is_some()
|
||||||
|
{
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let potential_import_name = {
|
let potential_import_name = {
|
||||||
@ -664,4 +667,22 @@ fn main() {
|
|||||||
"#]],
|
"#]],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn no_completions_in_use_statements() {
|
||||||
|
check(
|
||||||
|
r#"
|
||||||
|
//- /lib.rs crate:dep
|
||||||
|
pub mod io {
|
||||||
|
pub fn stdin() {}
|
||||||
|
};
|
||||||
|
|
||||||
|
//- /main.rs crate:main deps:dep
|
||||||
|
use stdi$0
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
|
"#,
|
||||||
|
expect![[]],
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user