forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.1 KiB
Scheme
81 lines
1.1 KiB
Scheme
((identifier) @variable.builtin
|
|
(#match? @variable.builtin "^(Bool|Class|Fiber|Fn|List|Map|Null|Num|Object|Range|Sequence|String|System)$"))
|
|
|
|
(call_expression
|
|
(identifier) @function)
|
|
|
|
(method_definition
|
|
(identifier) @function.method)
|
|
|
|
((parameter) @variable.parameter)
|
|
|
|
(comment) @comment
|
|
(string) @string
|
|
(raw_string) @string
|
|
(number) @constant.numeric.integer
|
|
(identifier) @variable
|
|
(null) @constant.builtin
|
|
(boolean) @constant.builtin.boolean
|
|
|
|
(if_statement
|
|
[
|
|
"if"
|
|
"else"
|
|
] @keyword.control.conditional)
|
|
|
|
(for_statement
|
|
[
|
|
"for"
|
|
"in"
|
|
] @keyword.control.repeat)
|
|
|
|
(while_statement
|
|
[
|
|
"while"
|
|
] @keyword.control.repeat)
|
|
|
|
[
|
|
(break_statement)
|
|
(continue_statement)
|
|
(return_statement)
|
|
] @keyword.control.return
|
|
|
|
(class_definition
|
|
"is"
|
|
@keyword)
|
|
|
|
[
|
|
"import"
|
|
"for"
|
|
"as"
|
|
] @keyword.control.import
|
|
|
|
[
|
|
"is"
|
|
] @keyword
|
|
|
|
(operator) @operator
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"["
|
|
"]"
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
["," "."] @punctuation.delimiter
|
|
|
|
[
|
|
"class"
|
|
"var"
|
|
] @keyword.storage.type
|
|
|
|
[
|
|
"static"
|
|
] @keyword.storage.modifier
|
|
|
|
(constructor
|
|
["construct"] @constructor)
|