mirror of https://github.com/helix-editor/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.
77 lines
950 B
Scheme
77 lines
950 B
Scheme
(line_comment) @comment.line
|
|
(block_comment) @comment.block
|
|
|
|
(argument name: (identifier) @variable.parameter)
|
|
|
|
(local_var name: (identifier) @variable)
|
|
(environment_var name:(identifier) @variable.builtin)
|
|
(builtin_var) @constant.builtin
|
|
|
|
(function_definition name: (variable) @function)
|
|
|
|
(named_argument name: (identifier) @variable.other.member)
|
|
|
|
(method_call name: (method_name) @function.method)
|
|
|
|
(class) @keyword.storage.type
|
|
|
|
(number) @constant.numeric
|
|
(float) @constant.numeric.float
|
|
|
|
(string) @string
|
|
(symbol) @string.special.symbol
|
|
|
|
[
|
|
"&&"
|
|
"||"
|
|
"&"
|
|
"|"
|
|
"^"
|
|
"=="
|
|
"!="
|
|
"<"
|
|
"<="
|
|
">"
|
|
">="
|
|
"<<"
|
|
">>"
|
|
"+"
|
|
"-"
|
|
"*"
|
|
"/"
|
|
"%"
|
|
"="
|
|
"|@|"
|
|
"@@"
|
|
"@|@"
|
|
] @operator
|
|
|
|
[
|
|
"arg"
|
|
"classvar"
|
|
"const"
|
|
"var"
|
|
] @keyword
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"["
|
|
"]"
|
|
"{"
|
|
"}"
|
|
"|"
|
|
] @punctuation.bracket
|
|
|
|
[
|
|
";"
|
|
"."
|
|
","
|
|
] @punctuation.delimiter
|
|
|
|
(control_structure) @keyword.control.conditional
|
|
|
|
(escape_sequence) @string.special
|
|
|
|
(duplicated_statement) @keyword.control.repeat
|