mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
* Mark floats as number.float * Mark function arguments as variable.parameter * Mark _ placeholder as character.special * Mark string interpolation delimiters as punctuation.special
156 lines
1.9 KiB
Scheme
156 lines
1.9 KiB
Scheme
(hash_bang) @keyword.directive
|
|
|
|
(comment) @comment @spell
|
|
|
|
(number) @number
|
|
|
|
(float_number) @number.float
|
|
|
|
(identifier) @variable
|
|
|
|
(parameter
|
|
parameter: (identifier) @variable.parameter)
|
|
|
|
(property_identifier) @property
|
|
|
|
[
|
|
(string_literal)
|
|
(string_literal_begin)
|
|
(string_literal_continuation)
|
|
(string_literal_end)
|
|
] @string
|
|
|
|
[
|
|
"case"
|
|
"default"
|
|
"else"
|
|
"if"
|
|
"switch"
|
|
] @keyword.conditional
|
|
|
|
"import" @keyword.import
|
|
|
|
[
|
|
(break_statement)
|
|
(continue_statement)
|
|
"for"
|
|
"loop"
|
|
"repeat"
|
|
"while"
|
|
] @keyword.repeat
|
|
|
|
(for_statement
|
|
"in" @keyword.repeat)
|
|
|
|
"class" @keyword.type
|
|
|
|
[
|
|
"return"
|
|
"yield"
|
|
] @keyword.return
|
|
|
|
[
|
|
"catch"
|
|
"defer"
|
|
"throw"
|
|
"try"
|
|
] @keyword.exception
|
|
|
|
[
|
|
"constructor"
|
|
"fun"
|
|
"=>"
|
|
] @keyword.function
|
|
|
|
"_" @character.special
|
|
|
|
[
|
|
(line)
|
|
"assert"
|
|
;"async"
|
|
"const"
|
|
"do"
|
|
"extends"
|
|
(fallthrough_statement)
|
|
;"get"
|
|
;"match"
|
|
"public"
|
|
;"set"
|
|
;"static"
|
|
"var"
|
|
"with"
|
|
] @keyword
|
|
|
|
[
|
|
(this)
|
|
(super)
|
|
] @variable.builtin
|
|
|
|
[
|
|
(false)
|
|
(true)
|
|
] @boolean
|
|
|
|
(void) @constant.builtin
|
|
|
|
[
|
|
"("
|
|
")"
|
|
"["
|
|
"]"
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
(string_literal_begin
|
|
"\\(" @punctuation.special)
|
|
|
|
(string_literal_continuation
|
|
"\\(" @punctuation.special)
|
|
|
|
(formatted_string
|
|
")" @punctuation.special)
|
|
|
|
[
|
|
";"
|
|
":"
|
|
"."
|
|
","
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
(arithmetic_assignment_operator)
|
|
(comparison_operator)
|
|
(bitwise_operator)
|
|
(additive_operator)
|
|
(multiplicative_operator)
|
|
(logical_operator)
|
|
(unary_operator)
|
|
"->"
|
|
"..."
|
|
"="
|
|
"?"
|
|
] @operator
|
|
|
|
(conditional_expression
|
|
[
|
|
"?"
|
|
":"
|
|
] @keyword.conditional.ternary)
|
|
|
|
(class_member
|
|
(function_decl
|
|
name: (identifier) @function.method))
|
|
|
|
(function_decl
|
|
name: (identifier) @function)
|
|
|
|
(class_decl
|
|
name: (identifier) @type)
|
|
|
|
(invocation
|
|
(identifier) @function.call)
|
|
|
|
(invocation
|
|
(refinement
|
|
property: (property_identifier) @function.method.call))
|