helix-mods/runtime/queries/jsonnet/highlights.scm
Matouš Dzivjak 5ab85283e9
feat(languages): jsonnet (#3714)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
2022-09-08 09:04:18 -05:00

39 lines
607 B
Scheme

["if" "then" "else"] @keyword.control.conditional
[
(local)
"function"
] @keyword
(comment) @comment
(string) @string
(number) @constant.numeric
[
(true)
(false)
] @constant.builtin.boolean
(binaryop) @operator
(unaryop) @operator
(param identifier: (id) @variable.parameter)
(bind function: (id) @function)
(fieldname (id) @variable.other.member)
[
"["
"]"
"{"
"}"
] @punctuation.bracket
"for" @keyword.control.repeat
"in" @keyword.operator
[(self) (dollar)] @variable.builtin
"assert" @keyword
(null) @constant.builtin
[
":"
"::"
";"
"="
] @punctuation.delimiter
(id) @variable