format-postfix completion takes format instead of fmt

This commit is contained in:
Lukas Wirth 2020-12-26 17:55:48 +01:00
parent fd1fcf2c2e
commit 20bd4ddd4e
2 changed files with 2 additions and 2 deletions

View File

@ -502,7 +502,7 @@ fn main() {
#[test] #[test]
fn postfix_completion_for_format_like_strings() { fn postfix_completion_for_format_like_strings() {
check_edit( check_edit(
"fmt", "format",
r#"fn main() { "{some_var:?}".<|> }"#, r#"fn main() { "{some_var:?}".<|> }"#,
r#"fn main() { format!("{:?}", some_var) }"#, r#"fn main() { format!("{:?}", some_var) }"#,
); );

View File

@ -22,7 +22,7 @@ use syntax::ast::{self, AstToken};
/// Mapping ("postfix completion item" => "macro to use") /// Mapping ("postfix completion item" => "macro to use")
static KINDS: &[(&str, &str)] = &[ static KINDS: &[(&str, &str)] = &[
("fmt", "format!"), ("format", "format!"),
("panic", "panic!"), ("panic", "panic!"),
("println", "println!"), ("println", "println!"),
("eprintln", "eprintln!"), ("eprintln", "eprintln!"),