tree-sitter-spl/queries/highlights.scm
2024-11-15 21:01:47 +01:00

18 lines
309 B
Scheme

[
"construct" "namespace"
"func"
"def"
"with"
"while"
"if"
"catch"
"include" "in"
"use"
] @keyword
(number) @number
(string) @string
(call (identifier) @function)
(call (call) @function (identifier) @property)
(def (identifier) @local.definition)
(with_expr (identifier) @local.definition)