Skip to content

Commit efbbb09

Browse files
committed
apply suggestions
1 parent 309b30b commit efbbb09

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed
Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
["if" "then" "else"] @keyword.control.conditional
1+
["if" "then" "else"] @conditional
22
[
33
(local)
44
"function"
55
] @keyword
66
(comment) @comment
77

88
(string) @string
9-
(number) @constant.numeric
9+
(number) @number
1010
[
1111
(true)
1212
(false)
13-
] @constant.builtin.boolean
13+
] @boolean
1414

1515
(binaryop) @operator
1616
(unaryop) @operator
1717

18-
(id) @variable
1918
(param identifier: (id) @variable.parameter)
2019
(bind function: (id) @function)
2120
(fieldname) @string.special
@@ -25,3 +24,15 @@
2524
"{"
2625
"}"
2726
] @punctuation.bracket
27+
"for" @keyword.control.repeat
28+
"in" @keyword.operator
29+
[(self) (dollar)] @variable.builtin
30+
"assert" @keyword
31+
(null) @constant.builtin
32+
[
33+
":"
34+
"::"
35+
";"
36+
"="
37+
] @punctuation.delimiter
38+
(id) @variable

0 commit comments

Comments
 (0)