Merge branch 'main' of ssh://git.trivernis.net:22321/Trivernis/dotfiles-silo
commit
d3fbca924b
@ -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