1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 10:10:04 +08:00
SpaceVim/bundle/nvim-treesitter/queries/rego/highlights.scm

65 lines
866 B
Scheme

; highlights.scm
[
(import)
(package)
] @include
[
(with)
(as)
(every)
(some)
(in)
(not)
(if)
(contains)
(else)
(default)
"null"
] @keyword
[
"true"
"false"
] @boolean
[
(assignment_operator)
(bool_operator)
(arith_operator)
(bin_operator)
] @operator
[
(string)
(raw_string)
] @string
(term (ref (var))) @variable
(comment) @comment
(number) @number
(expr_call func_name: (fn_name (var) @function .))
(expr_call func_arguments: (fn_args (expr) @parameter))
(rule_args (term) @parameter)
[
(open_paren)
(close_paren)
(open_bracket)
(close_bracket)
(open_curly)
(close_curly)
] @punctuation.bracket
(rule (rule_head (var) @method))
(rule
(rule_head (term (ref (var) @namespace)))
(rule_body (query (literal (expr (expr_infix (expr (term (ref (var)) @_output)))))) (#eq? @_output @namespace))
)