diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-26 13:08:56 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-26 13:08:56 +0100 |
commit | 5a1fd05760260be9a91f6fad2fd6463edffbcb13 (patch) | |
tree | ce4c358eceaceeaea43225218bac3f9a753dfa1f /crates/ide/src/syntax_highlighting | |
parent | 5701c553cba5cb1ca4159a874ae5abadbd11041a (diff) | |
parent | 887dd2d5bb5dd3fda1da8aa0de7300a78fdebd6b (diff) |
Merge #9003
9003: minor: Document semantic token modifiers r=Veykril a=Veykril
Part of #6457
Co-authored-by: Lukas Wirth <[email protected]>
Diffstat (limited to 'crates/ide/src/syntax_highlighting')
-rw-r--r-- | crates/ide/src/syntax_highlighting/tags.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ide/src/syntax_highlighting/tags.rs b/crates/ide/src/syntax_highlighting/tags.rs index e94f17cd9..9d481deae 100644 --- a/crates/ide/src/syntax_highlighting/tags.rs +++ b/crates/ide/src/syntax_highlighting/tags.rs | |||
@@ -37,6 +37,8 @@ pub enum HlTag { | |||
37 | None, | 37 | None, |
38 | } | 38 | } |
39 | 39 | ||
40 | // Don't forget to adjust the feature description in crates/ide/src/syntax_highlighting.rs. | ||
41 | // And make sure to use the lsp strings used when converting to the protocol in crates\rust-analyzer\src\semantic_tokens.rs, not the names of the variants here. | ||
40 | #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] | 42 | #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] |
41 | #[repr(u8)] | 43 | #[repr(u8)] |
42 | pub enum HlMod { | 44 | pub enum HlMod { |