mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 13:51:31 +00:00
restore coloring of attributes
This commit is contained in:
parent
857f419c9d
commit
6503add6e3
2 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,7 @@ pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padd
|
||||||
.keyword\.unsafe { color: #DFAF8F; }
|
.keyword\.unsafe { color: #DFAF8F; }
|
||||||
.keyword\.control { color: #F0DFAF; font-weight: bold; }
|
.keyword\.control { color: #F0DFAF; font-weight: bold; }
|
||||||
</style>
|
</style>
|
||||||
<pre><code><span class="attribute">#</span><span class="attribute">[</span><span class="attribute text">derive</span><span class="attribute">(</span><span class="attribute">Clone</span><span class="attribute">,</span><span class="attribute"> </span><span class="attribute">Debug</span><span class="attribute">)</span><span class="attribute">]</span>
|
<pre><code><span class="attribute">#</span><span class="attribute">[</span><span class="attribute">derive</span><span class="attribute">(</span><span class="attribute">Clone</span><span class="attribute">,</span><span class="attribute"> </span><span class="attribute">Debug</span><span class="attribute">)</span><span class="attribute">]</span>
|
||||||
<span class="keyword">struct</span> <span class="type">Foo</span> {
|
<span class="keyword">struct</span> <span class="type">Foo</span> {
|
||||||
<span class="keyword">pub</span> <span class="field">x</span>: <span class="type">i32</span>,
|
<span class="keyword">pub</span> <span class="field">x</span>: <span class="type">i32</span>,
|
||||||
<span class="keyword">pub</span> <span class="field">y</span>: <span class="type">i32</span>,
|
<span class="keyword">pub</span> <span class="field">y</span>: <span class="type">i32</span>,
|
||||||
|
|
|
@ -97,6 +97,9 @@ pub(crate) fn highlight(db: &RootDatabase, file_id: FileId) -> Vec<HighlightedRa
|
||||||
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => "string",
|
STRING | RAW_STRING | RAW_BYTE_STRING | BYTE_STRING => "string",
|
||||||
ATTR => "attribute",
|
ATTR => "attribute",
|
||||||
NAME_REF => {
|
NAME_REF => {
|
||||||
|
if node.ancestors().any(|it| it.kind() == ATTR) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if let Some(name_ref) = node.as_node().cloned().and_then(ast::NameRef::cast) {
|
if let Some(name_ref) = node.as_node().cloned().and_then(ast::NameRef::cast) {
|
||||||
// FIXME: try to reuse the SourceAnalyzers
|
// FIXME: try to reuse the SourceAnalyzers
|
||||||
let analyzer = hir::SourceAnalyzer::new(db, file_id, name_ref.syntax(), None);
|
let analyzer = hir::SourceAnalyzer::new(db, file_id, name_ref.syntax(), None);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue