diff options
| -rw-r--r-- | crates/ide/src/syntax_highlighting.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting.rs b/crates/ide/src/syntax_highlighting.rs index a3d4e4f77ad..9bed329d8d8 100644 --- a/crates/ide/src/syntax_highlighting.rs +++ b/crates/ide/src/syntax_highlighting.rs @@ -72,7 +72,7 @@ pub(crate) fn highlight( } }; - let mut hl = highlights::Highlights::new(range_to_highlight); + let mut hl = highlights::Highlights::new(root.text_range()); traverse(&mut hl, &sema, &root, range_to_highlight, syntactic_name_ref_highlighting); hl.to_vec() } |
