mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
119 lines
1.3 KiB
Scheme
119 lines
1.3 KiB
Scheme
; Variables
|
|
(identifier) @variable
|
|
|
|
(local_variable
|
|
"$" @attribute.builtin)
|
|
|
|
(game_variable
|
|
[
|
|
"%"
|
|
".%"
|
|
] @attribute.builtin)
|
|
|
|
(constant_variable
|
|
"^" @attribute.builtin)
|
|
|
|
(parameter
|
|
(local_variable
|
|
name: (identifier) @variable.parameter))
|
|
|
|
; Scripts
|
|
(script
|
|
trigger: (identifier) @keyword.directive
|
|
subject: (identifier) @function)
|
|
|
|
; Calls
|
|
(call
|
|
[
|
|
"~"
|
|
"@"
|
|
]? @attribute.builtin
|
|
callee: (identifier) @function.call)
|
|
|
|
; Literals
|
|
((literal) @boolean
|
|
(#any-of? @boolean "true" "false"))
|
|
|
|
(literal
|
|
"null" @constant.builtin)
|
|
|
|
(integer_literal) @number
|
|
|
|
(coord_literal) @string.special
|
|
|
|
(comment) @comment @spell
|
|
|
|
[
|
|
(string_fragment)
|
|
"\""
|
|
] @string
|
|
|
|
(escape_sequence) @string.escape
|
|
|
|
(string_interpolation
|
|
[
|
|
"<"
|
|
">"
|
|
] @punctuation.special)
|
|
|
|
(string_tag) @punctuation.special
|
|
|
|
; Types
|
|
(type) @type
|
|
|
|
(parameter_type) @type
|
|
|
|
; Tokens
|
|
[
|
|
";"
|
|
":"
|
|
","
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
[
|
|
"["
|
|
"]"
|
|
] @punctuation.special
|
|
|
|
[
|
|
"*"
|
|
"/"
|
|
"+"
|
|
"-"
|
|
"&"
|
|
"|"
|
|
">"
|
|
">="
|
|
"<"
|
|
"<="
|
|
"="
|
|
"!"
|
|
] @operator
|
|
|
|
(arithmetic
|
|
"%" @operator)
|
|
|
|
[
|
|
(def_type_keyword)
|
|
(switch_type_keyword)
|
|
] @keyword.modifier
|
|
|
|
"return" @keyword.return
|
|
|
|
"while" @keyword.repeat
|
|
|
|
[
|
|
"default"
|
|
"if"
|
|
"else"
|
|
"case"
|
|
] @keyword.conditional
|
|
|
|
"calc" @keyword
|