diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index c5098189b..9e8419c5f 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs | |||
@@ -579,7 +579,8 @@ fn highlight_element( | |||
579 | return None; | 579 | return None; |
580 | } | 580 | } |
581 | 581 | ||
582 | // FIXME account for alignment... somehow | 582 | // FIXME This needs layout computation to be correct. It will highlight |
583 | // more than it should with the current implementation. | ||
583 | 584 | ||
584 | Highlight::new(HighlightTag::Operator) | HighlightModifier::Unsafe | 585 | Highlight::new(HighlightTag::Operator) | HighlightModifier::Unsafe |
585 | } | 586 | } |