mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 18:00:07 -04:00
Some minor changes according to suggestions
This commit is contained in:
parent
0dbbefd1bc
commit
6dfbca8f72
1 changed files with 11 additions and 4 deletions
|
|
@ -76,9 +76,16 @@
|
||||||
(#any-of? @keyword.operator
|
(#any-of? @keyword.operator
|
||||||
"and" "or" "xor" "not" "not in" "in" "contains" "starts with" "ends with" "matches"))
|
"and" "or" "xor" "not" "not in" "in" "contains" "starts with" "ends with" "matches"))
|
||||||
|
|
||||||
"," @punctuation.delimiter
|
[
|
||||||
|
","
|
||||||
|
"."
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
"." @punctuation.delimiter
|
(symfony_property_access
|
||||||
|
"." @operator)
|
||||||
|
|
||||||
|
(symfony_method_call
|
||||||
|
"." @operator)
|
||||||
|
|
||||||
[
|
[
|
||||||
"("
|
"("
|
||||||
|
|
@ -89,10 +96,10 @@
|
||||||
] @punctuation.bracket
|
] @punctuation.bracket
|
||||||
|
|
||||||
(condition
|
(condition
|
||||||
"[" @keyword.conditional)
|
"[" @punctuation.special)
|
||||||
|
|
||||||
(condition
|
(condition
|
||||||
"]" @keyword.conditional)
|
"]" @punctuation.special)
|
||||||
|
|
||||||
(symfony_number) @number
|
(symfony_number) @number
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue