Add semantic highlight to QUESTION token

Made it an operator with controlFlow modifier.
This commit is contained in:
Roland Ruckerbauer
2020-05-29 21:17:14 +02:00
parent 30658b25d2
commit 18aa4bcb03
3 changed files with 4 additions and 0 deletions

View File

@@ -317,6 +317,7 @@ fn semantic_token_type_and_modifiers(
HighlightTag::Keyword => lsp_types::SemanticTokenType::KEYWORD,
HighlightTag::UnresolvedReference => semantic_tokens::UNRESOLVED_REFERENCE,
HighlightTag::FormatSpecifier => semantic_tokens::FORMAT_SPECIFIER,
HighlightTag::Operator => lsp_types::SemanticTokenType::OPERATOR,
};
for modifier in highlight.modifiers.iter() {