diff options
author | Leander Tentrup <[email protected]> | 2020-07-13 21:59:42 +0100 |
---|---|---|
committer | Leander Tentrup <[email protected]> | 2020-07-15 15:40:38 +0100 |
commit | 33832d43fcc10fd6da0edf004d575f3576d9e91d (patch) | |
tree | f39cd0be40d8abda16eb5036ccc7219eb9ba282c /crates/ra_ide/src | |
parent | 57652fc9d439de1315f78fb6aba34e834cb7f727 (diff) |
Highlight punctuation as `HighlightTag::Operator`
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index b3236e821..6067207d9 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs | |||
@@ -553,6 +553,7 @@ fn highlight_element( | |||
553 | T![!] if element.parent().and_then(ast::MacroCall::cast).is_some() => { | 553 | T![!] if element.parent().and_then(ast::MacroCall::cast).is_some() => { |
554 | Highlight::new(HighlightTag::Macro) | 554 | Highlight::new(HighlightTag::Macro) |
555 | } | 555 | } |
556 | p if p.is_punct() => HighlightTag::Operator.into(), | ||
556 | 557 | ||
557 | k if k.is_keyword() => { | 558 | k if k.is_keyword() => { |
558 | let h = Highlight::new(HighlightTag::Keyword); | 559 | let h = Highlight::new(HighlightTag::Keyword); |