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.
159 lines
1.6 KiB
Scheme
159 lines
1.6 KiB
Scheme
3 years ago
|
[
|
||
|
"f32"
|
||
|
"f64"
|
||
|
"i16"
|
||
|
"i32"
|
||
|
"i64"
|
||
|
"i8"
|
||
|
"int"
|
||
|
"rune"
|
||
|
"str"
|
||
|
"u16"
|
||
|
"u32"
|
||
|
"u64"
|
||
|
"u8"
|
||
|
"uint"
|
||
|
"uintptr"
|
||
|
"void"
|
||
|
] @type
|
||
|
|
||
|
|
||
|
[
|
||
|
"else"
|
||
|
"if"
|
||
|
"match"
|
||
|
"switch"
|
||
|
] @keyword.control.conditional
|
||
|
|
||
|
[
|
||
|
"export"
|
||
|
"use"
|
||
|
] @keyword.control.import
|
||
|
|
||
|
[
|
||
|
"continue"
|
||
|
"for"
|
||
|
"break"
|
||
|
] @keyword.control.repeat
|
||
|
|
||
|
"return" @keyword.control.return
|
||
|
|
||
|
[
|
||
|
"abort"
|
||
|
"assert"
|
||
|
] @keyword.control.exception
|
||
|
|
||
|
[
|
||
|
"def"
|
||
|
"fn"
|
||
|
] @keyword.function
|
||
|
|
||
|
[
|
||
|
"alloc"
|
||
|
"append"
|
||
|
"as"
|
||
|
"bool"
|
||
|
"char"
|
||
|
"const"
|
||
|
"defer"
|
||
|
"delete"
|
||
|
"enum"
|
||
|
"free"
|
||
|
"is"
|
||
|
"len"
|
||
|
"let"
|
||
|
"match"
|
||
|
"nullable"
|
||
|
"offset"
|
||
|
"size"
|
||
|
"static"
|
||
|
"struct"
|
||
|
"type"
|
||
|
"union"
|
||
|
] @keyword
|
||
|
|
||
|
[
|
||
|
"."
|
||
|
"!"
|
||
|
"~"
|
||
|
"?"
|
||
|
"*"
|
||
|
"/"
|
||
|
"%"
|
||
|
"+"
|
||
|
"-"
|
||
|
"<<"
|
||
|
">>"
|
||
|
"::"
|
||
|
"<"
|
||
|
"<="
|
||
|
">"
|
||
|
">="
|
||
|
"=="
|
||
|
"!="
|
||
|
"&"
|
||
|
"|"
|
||
|
"^"
|
||
|
"&&"
|
||
|
"||"
|
||
|
"="
|
||
|
"+="
|
||
|
"-="
|
||
|
"*="
|
||
|
"/="
|
||
|
"%="
|
||
|
"&="
|
||
|
"|="
|
||
|
"<<="
|
||
|
">>="
|
||
|
"^="
|
||
|
"=>"
|
||
|
] @operator
|
||
|
|
||
|
[
|
||
|
"("
|
||
|
")"
|
||
|
"["
|
||
|
"]"
|
||
|
")"
|
||
|
"{"
|
||
|
"}"
|
||
|
] @punctuation.bracket
|
||
|
|
||
|
[
|
||
|
":"
|
||
|
";"
|
||
|
] @punctuation.delimiter
|
||
|
|
||
|
"..." @special
|
||
|
|
||
|
(comment) @comment
|
||
|
|
||
|
[
|
||
|
"false"
|
||
|
"null"
|
||
|
"true"
|
||
|
] @constant.builtin
|
||
|
|
||
|
(string_constant) @string
|
||
|
(escape_sequence) @constant.character.escape
|
||
|
(rune_constant) @string
|
||
|
(integer_constant) @constant.numeric.integer
|
||
|
(floating_constant) @constant.numeric.float
|
||
|
|
||
|
(call_expression
|
||
|
(postfix_expression) @function)
|
||
|
|
||
|
(function_declaration
|
||
|
name: (identifier) @function)
|
||
|
|
||
|
(parameter (name) @variable.parameter)
|
||
|
|
||
|
(field_access_expression
|
||
|
selector: (name) @variable.other.member)
|
||
|
(decl_attr) @special
|
||
|
(fndec_attrs) @special
|
||
|
|
||
|
(identifier) @variable
|
||
|
|