File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
crates/ide_completion/src/completions Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ const ATTRIBUTES: &[AttrCompletion] = &[
101101 ) ,
102102 attr ( r#"doc(alias = "…")"# , Some ( "docalias" ) , Some ( r#"doc(alias = "${0:docs}")"# ) ) ,
103103 attr ( r#"doc = "…""# , Some ( "doc" ) , Some ( r#"doc = "${0:docs}""# ) ) ,
104+ attr ( r#"doc(hidden)"# , Some ( "dochidden" ) , Some ( r#"doc(hidden)"# ) ) ,
104105 attr ( "feature(…)" , Some ( "feature" ) , Some ( "feature(${0:flag})" ) ) . prefer_inner ( ) ,
105106 attr ( "forbid(…)" , Some ( "forbid" ) , Some ( "forbid(${0:lint})" ) ) ,
106107 // FIXME: resolve through macro resolution?
@@ -471,6 +472,7 @@ struct Test {}
471472 at export_name = "…"
472473 at doc(alias = "…")
473474 at doc = "…"
475+ at doc(hidden)
474476 at forbid(…)
475477 at ignore = "…"
476478 at inline
@@ -519,6 +521,7 @@ struct Test {}
519521 at export_name = "…"
520522 at doc(alias = "…")
521523 at doc = "…"
524+ at doc(hidden)
522525 at feature(…)
523526 at forbid(…)
524527 at global_allocator
You can’t perform that action at this time.
0 commit comments