mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
107 lines
1.4 KiB
Scheme
107 lines
1.4 KiB
Scheme
(identifier) @variable
|
|
(int_literal) @number
|
|
(float_literal) @float
|
|
(bool_literal) @boolean
|
|
|
|
(type_declaration) @type
|
|
|
|
(function_declaration
|
|
(identifier) @function)
|
|
|
|
(parameter
|
|
(variable_identifier_declaration (identifier) @parameter))
|
|
|
|
(struct_declaration
|
|
(identifier) @type)
|
|
|
|
(struct_declaration
|
|
(struct_member (variable_identifier_declaration (identifier) @field)))
|
|
|
|
(type_constructor_or_function_call_expression
|
|
(type_declaration) @function.call)
|
|
|
|
[
|
|
"struct"
|
|
"bitcast"
|
|
"discard"
|
|
"enable"
|
|
"fallthrough"
|
|
"let"
|
|
"type"
|
|
"var"
|
|
"override"
|
|
(texel_format)
|
|
] @keyword
|
|
|
|
[
|
|
"private"
|
|
"storage"
|
|
"uniform"
|
|
"workgroup"
|
|
] @storageclass
|
|
|
|
[
|
|
"read"
|
|
"read_write"
|
|
"write"
|
|
] @type.qualifier
|
|
|
|
"fn" @keyword.function
|
|
|
|
"return" @keyword.return
|
|
|
|
[ "," "." ":" ";" "->" ] @punctuation.delimiter
|
|
|
|
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
|
|
|
|
[
|
|
"loop"
|
|
"for"
|
|
"while"
|
|
"break"
|
|
"continue"
|
|
"continuing"
|
|
] @repeat
|
|
|
|
[
|
|
"if"
|
|
"else"
|
|
"switch"
|
|
"case"
|
|
"default"
|
|
] @conditional
|
|
|
|
[
|
|
"&"
|
|
"&&"
|
|
"/"
|
|
"!"
|
|
"="
|
|
"=="
|
|
"!="
|
|
">"
|
|
">="
|
|
">>"
|
|
"<"
|
|
"<="
|
|
"<<"
|
|
"%"
|
|
"-"
|
|
"+"
|
|
"|"
|
|
"||"
|
|
"*"
|
|
"~"
|
|
"^"
|
|
"@"
|
|
"++"
|
|
"--"
|
|
] @operator
|
|
|
|
(attribute
|
|
(identifier) @attribute)
|
|
|
|
[(line_comment) (block_comment)] @comment
|
|
|
|
(ERROR) @error
|