Fix tree-sitter highlighting
parent
be09c938ad
commit
31d90b776e
@ -0,0 +1,39 @@
|
|||||||
|
[
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @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
|
@ -0,0 +1,10 @@
|
|||||||
|
(spread
|
||||||
|
(identifier) @local.definition)
|
||||||
|
|
||||||
|
(object
|
||||||
|
(object_property) @local.definition)
|
||||||
|
|
||||||
|
(array
|
||||||
|
(identifier) @local.definition)
|
||||||
|
|
||||||
|
(identifier) @local.reference
|
Loading…
Reference in New Issue