Temporarily disable format string completions

This commit is contained in:
Laurențiu Nicola 2022-01-17 09:18:40 +02:00
parent e6e72809e3
commit c504518775

View file

@ -8,6 +8,9 @@
/// Complete identifiers in format strings.
pub(crate) fn format_string(acc: &mut Completions, ctx: &CompletionContext) {
if true {
return;
}
let string = match ast::String::cast(ctx.token.clone()) {
Some(it) if is_format_string(&it) => it,
_ => return,
@ -36,7 +39,7 @@ pub(crate) fn format_string(acc: &mut Completions, ctx: &CompletionContext) {
mod tests {
use expect_test::{expect, Expect};
use crate::tests::{check_edit, completion_list_no_kw};
use crate::tests::completion_list_no_kw;
fn check(ra_fixture: &str, expect: Expect) {
let actual = completion_list_no_kw(ra_fixture);
@ -59,49 +62,49 @@ fn main() {
);
}
#[test]
fn completes_locals() {
check_edit(
"foobar",
r#"
macro_rules! format_args {
($lit:literal $(tt:tt)*) => { 0 },
}
fn main() {
let foobar = 1;
format_args!("{f$0");
}
"#,
r#"
macro_rules! format_args {
($lit:literal $(tt:tt)*) => { 0 },
}
fn main() {
let foobar = 1;
format_args!("{foobar");
}
"#,
);
check_edit(
"foobar",
r#"
macro_rules! format_args {
($lit:literal $(tt:tt)*) => { 0 },
}
fn main() {
let foobar = 1;
format_args!("{$0");
}
"#,
r#"
macro_rules! format_args {
($lit:literal $(tt:tt)*) => { 0 },
}
fn main() {
let foobar = 1;
format_args!("{foobar");
}
"#,
);
}
// #[test]
// fn completes_locals() {
// check_edit(
// "foobar",
// r#"
// macro_rules! format_args {
// ($lit:literal $(tt:tt)*) => { 0 },
// }
// fn main() {
// let foobar = 1;
// format_args!("{f$0");
// }
// "#,
// r#"
// macro_rules! format_args {
// ($lit:literal $(tt:tt)*) => { 0 },
// }
// fn main() {
// let foobar = 1;
// format_args!("{foobar");
// }
// "#,
// );
// check_edit(
// "foobar",
// r#"
// macro_rules! format_args {
// ($lit:literal $(tt:tt)*) => { 0 },
// }
// fn main() {
// let foobar = 1;
// format_args!("{$0");
// }
// "#,
// r#"
// macro_rules! format_args {
// ($lit:literal $(tt:tt)*) => { 0 },
// }
// fn main() {
// let foobar = 1;
// format_args!("{foobar");
// }
// "#,
// );
// }
}