File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 123
123
124
124
; Punctuation
125
125
["," "." "-" ";"] @punctuation.delimiter
126
- ["(" ")" "#" "{" "}" "[" "]" "<<" ">>"] @punctuation.bracket
126
+
127
+ (list "[" @rainbow "]" @rainbow )
128
+ (record "#" @rainbow "{" @rainbow "}" @rainbow )
129
+ (map "#" @rainbow "{" @rainbow "}" @rainbow )
130
+ (map_update "{" @rainbow "}" @rainbow )
131
+ (tuple "{" @rainbow "}" @rainbow )
132
+ (arguments "(" @rainbow ")" @rainbow )
133
+ (parenthesized_expression "(" @rainbow ")" @rainbow )
134
+ (bitstring "<<" @rainbow ">>" @rainbow )
127
135
128
136
; (ERROR) @error
Original file line number Diff line number Diff line change 27
27
28
28
"=" @operator
29
29
30
- "[" @punctuation.bracket
31
- "]" @punctuation.bracket
32
- "[[" @punctuation.bracket
33
- "]]" @punctuation.bracket
34
- "{" @punctuation.bracket
35
- "}" @punctuation.bracket
30
+ (table_array_element "[[" @rainbow "]]" @rainbow )
31
+ (table "[" @rainbow "]" @rainbow )
32
+ (array "[" @rainbow "]" @rainbow )
33
+ (inline_table "{" @rainbow "}" @rainbow )
Original file line number Diff line number Diff line change 8
8
((query . (comment) @keyword.directive )
9
9
(#match? @keyword.directive "^;\ +inherits *:"))
10
10
11
+ (group "(" @rainbow ")" @rainbow )
12
+ (named_node "(" @rainbow ")" @rainbow )
13
+ (wildcard_node "(" @rainbow ")" @rainbow )
14
+ (predicate "(" @rainbow ")" @rainbow )
15
+ (alternation "[" @rainbow "]" @rainbow )
16
+
11
17
[
12
18
"("
13
19
")"
You can’t perform that action at this time.
0 commit comments