Trim mut keyword in fn completion

This commit is contained in:
adamrk 2020-09-02 22:49:21 +02:00
parent e11cd8fe35
commit 66658f1168

View file

@ -225,7 +225,7 @@ impl Completions {
.flat_map(|(it, param_ty)| {
if let Some(pat) = it.pat() {
let name = pat.to_string();
let arg = name.trim_start_matches('_');
let arg = name.trim_start_matches("mut ").trim_start_matches('_');
return Some(add_arg(arg, param_ty.ty(), ctx));
}
None
@ -961,6 +961,27 @@ fn main() {
);
}
#[test]
fn trim_mut_keyword_in_func_completion() {
check_edit(
"take_mutably",
r#"
fn take_mutably(mut x: &i32) {}
fn main() {
take_m<|>
}
"#,
r#"
fn take_mutably(mut x: &i32) {}
fn main() {
take_mutably(${1:x})$0
}
"#,
);
}
#[test]
fn inserts_parens_for_tuple_enums() {
mark::check!(inserts_parens_for_tuple_enums);