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.
40 lines
513 B
Scheme
40 lines
513 B
Scheme
[
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
(enclosed ["(" ")"] @punctuation.bracket )
|
|
(call ["(" ")"] @punctuation.bracket )
|
|
|
|
(function_name) @function
|
|
|
|
[
|
|
","
|
|
":"
|
|
"."
|
|
] @punctuation.delimiter
|
|
|
|
["|" "+" "-" "*" "/" "??" "..."] @operator
|
|
|
|
|
|
|
|
[
|
|
(true)
|
|
(false)
|
|
(null)
|
|
(undefined)
|
|
(this)
|
|
(root)
|
|
] @constant.builtin
|
|
|
|
|
|
(string) @string
|
|
(number) @constant.numeric.integer
|
|
|
|
|
|
(property_identifier) @variable.other.member
|
|
(dot (identifier) @variable.other.member)
|
|
|
|
(identifier) @variable
|
|
(variable) @variable
|