Remove a part of the deprecated autocompletion

This commit is contained in:
FlowerBOII 2021-01-06 11:06:02 +01:00
parent 861a547270
commit 64f8ec4632

View file

@ -98,7 +98,7 @@ const ATTRIBUTES: &[AttrCompletion] = &[
attr(r#"crate_name = """#, Some("crate_name"), Some(r#"crate_name = "${0:crate_name}""#))
.prefer_inner(),
attr("deny(…)", Some("deny"), Some("deny(${0:lint})")),
attr(r#"deprecated = "…""#, Some("deprecated"), Some(r#"deprecated = "${0:reason}""#)),
attr(r#"deprecated "…""#, Some("deprecated"), Some(r#"deprecated"#)),
attr("derive(…)", Some("derive"), Some(r#"derive(${0:Debug})"#)),
attr(
r#"export_name = "…""#,