ZIm/crates/languages/src/rust/highlights.scm
everdrone b6c3ef7e79
Improve Rust highlight queries (#17097)
See #16747.

Removed markdown injections so that only the rust highlights are
implemented

Release Notes:

- Improved Rust syntax highlighting queries.
2024-08-29 10:19:07 -07:00

191 lines
2.6 KiB
Scheme

(type_identifier) @type
(primitive_type) @type.builtin
(self) @variable.special
(field_identifier) @property
(trait_item name: (type_identifier) @type.interface)
(impl_item trait: (type_identifier) @type.interface)
(abstract_type trait: (type_identifier) @type.interface)
(dynamic_type trait: (type_identifier) @type.interface)
(trait_bounds (type_identifier) @type.interface)
(call_expression
function: [
(identifier) @function
(scoped_identifier
name: (identifier) @function)
(field_expression
field: (field_identifier) @function.method)
])
(generic_function
function: [
(identifier) @function
(scoped_identifier
name: (identifier) @function)
(field_expression
field: (field_identifier) @function.method)
])
(function_item name: (identifier) @function.definition)
(function_signature_item name: (identifier) @function.definition)
(macro_invocation
macro: [
(identifier) @function.special
(scoped_identifier
name: (identifier) @function.special)
])
(macro_definition
name: (identifier) @function.special.definition)
; Identifier conventions
; Assume uppercase names are types/enum-constructors
((identifier) @type
(#match? @type "^[A-Z]"))
; Assume all-caps names are constants
((identifier) @constant
(#match? @constant "^_*[A-Z][A-Z\\d_]*$"))
[
"("
")"
"{"
"}"
"["
"]"
] @punctuation.bracket
(_
.
"<" @punctuation.bracket
">" @punctuation.bracket)
[
";"
","
"::"
] @punctuation.delimiter
[
"#"
] @punctuation.special
[
"as"
"async"
"await"
"break"
"const"
"continue"
"default"
"dyn"
"else"
"enum"
"extern"
"fn"
"for"
"if"
"impl"
"in"
"let"
"loop"
"macro_rules!"
"match"
"mod"
"move"
"pub"
"ref"
"return"
"static"
"struct"
"trait"
"type"
"union"
"unsafe"
"use"
"where"
"while"
"yield"
(crate)
(mutable_specifier)
(super)
] @keyword
[
(string_literal)
(raw_string_literal)
(char_literal)
] @string
[
(integer_literal)
(float_literal)
] @number
(boolean_literal) @constant
[
(line_comment)
(block_comment)
] @comment
[
(line_comment (doc_comment))
(block_comment (doc_comment))
] @comment.doc
[
"!"
"!="
"%"
"%="
"&"
"&="
"&&"
"*"
"*="
"*"
"+"
"+="
","
"-"
"-="
"->"
"."
".."
"..="
"..."
"/"
"/="
":"
";"
"<<"
"<<="
"<"
"<="
"="
"=="
"=>"
">"
">="
">>"
">>="
"@"
"^"
"^="
"|"
"|="
"||"
"?"
] @operator
(lifetime) @lifetime
(parameter (identifier) @variable.parameter)
(attribute_item) @attribute
(inner_attribute_item) @attribute