diff options
author | Paul Daniel Faria <[email protected]> | 2020-06-15 13:21:32 +0100 |
---|---|---|
committer | Paul Daniel Faria <[email protected]> | 2020-08-10 13:44:54 +0100 |
commit | c9e670b8754b8262b5071a96c32cbcd22ff968f4 (patch) | |
tree | 13895bef1dc5d8ff350868bbe0a20a05461ba21c /crates/ra_ide | |
parent | 4a4b1f48efeff4ebe578eb92b7bb8338d0181a83 (diff) |
Update FIXME comment to be more useful
Diffstat (limited to 'crates/ra_ide')
-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 | } |