diff options
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 4 | ||||
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting/tags.rs (renamed from crates/ra_ide/src/syntax_highlighting/highlight.rs) | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index 4e95b9ce5..5f11b091c 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs | |||
@@ -1,6 +1,6 @@ | |||
1 | //! FIXME: write short doc here | 1 | //! FIXME: write short doc here |
2 | 2 | ||
3 | mod highlight; | 3 | mod tags; |
4 | mod html; | 4 | mod html; |
5 | 5 | ||
6 | use hir::{Name, Semantics}; | 6 | use hir::{Name, Semantics}; |
@@ -17,7 +17,7 @@ use rustc_hash::FxHashMap; | |||
17 | 17 | ||
18 | use crate::{references::classify_name_ref, FileId}; | 18 | use crate::{references::classify_name_ref, FileId}; |
19 | 19 | ||
20 | pub use highlight::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; | 20 | pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; |
21 | 21 | ||
22 | pub(crate) use html::highlight_as_html; | 22 | pub(crate) use html::highlight_as_html; |
23 | 23 | ||
diff --git a/crates/ra_ide/src/syntax_highlighting/highlight.rs b/crates/ra_ide/src/syntax_highlighting/tags.rs index 383c74c98..383c74c98 100644 --- a/crates/ra_ide/src/syntax_highlighting/highlight.rs +++ b/crates/ra_ide/src/syntax_highlighting/tags.rs | |||