forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
1.8 KiB
Scheme
137 lines
1.8 KiB
Scheme
2 years ago
|
[
|
||
|
(keyword_from)
|
||
|
(keyword_filter)
|
||
|
(keyword_derive)
|
||
|
(keyword_group)
|
||
|
(keyword_aggregate)
|
||
|
(keyword_sort)
|
||
|
(keyword_take)
|
||
|
(keyword_window)
|
||
|
(keyword_join)
|
||
|
(keyword_select)
|
||
|
(keyword_switch)
|
||
|
(keyword_append)
|
||
|
(keyword_remove)
|
||
|
(keyword_intersect)
|
||
|
(keyword_rolling)
|
||
|
(keyword_rows)
|
||
|
(keyword_expanding)
|
||
|
(keyword_let)
|
||
|
(keyword_prql)
|
||
|
(keyword_from_text)
|
||
|
] @keyword
|
||
|
|
||
|
(literal) @string
|
||
|
|
||
|
(assignment
|
||
|
alias: (field) @variable.other.member)
|
||
|
|
||
|
alias: (identifier) @variable.other.member
|
||
|
|
||
|
(f_string) @string.special
|
||
|
(s_string) @string.special
|
||
|
|
||
|
(comment) @comment
|
||
|
|
||
|
(keyword_func) @keyword.function
|
||
|
|
||
|
(function_call
|
||
|
(identifier) @function)
|
||
|
|
||
|
[
|
||
|
"+"
|
||
|
"-"
|
||
|
"*"
|
||
|
"/"
|
||
|
"="
|
||
|
"=="
|
||
|
"<"
|
||
|
"<="
|
||
|
"!="
|
||
|
">="
|
||
|
">"
|
||
|
"->"
|
||
|
(bang)
|
||
|
] @operator
|
||
|
|
||
|
[
|
||
|
"("
|
||
|
")"
|
||
|
"["
|
||
|
"]"
|
||
|
] @punctuation.bracket
|
||
|
|
||
|
[
|
||
|
","
|
||
|
"."
|
||
|
(pipe)
|
||
|
] @punctuation.delimiter
|
||
|
|
||
|
(literal
|
||
|
(integer) @constant.numeric.integer)
|
||
|
|
||
|
(integer) @constant.numeric.integer
|
||
|
|
||
|
(literal
|
||
|
(decimal_number) @constant.numeric.float)
|
||
|
|
||
|
(decimal_number) @constant.numeric.float
|
||
|
|
||
|
[
|
||
|
(keyword_min)
|
||
|
(keyword_max)
|
||
|
(keyword_count)
|
||
|
(keyword_count_distinct)
|
||
|
(keyword_average)
|
||
|
(keyword_avg)
|
||
|
(keyword_sum)
|
||
|
(keyword_stddev)
|
||
|
(keyword_count)
|
||
|
] @function
|
||
|
|
||
|
[
|
||
|
(keyword_side)
|
||
|
(keyword_version)
|
||
|
(keyword_target)
|
||
|
(keyword_null)
|
||
|
(keyword_format)
|
||
|
] @attribute
|
||
|
|
||
|
(target) @function.builtin
|
||
|
|
||
|
[
|
||
|
(date)
|
||
|
(time)
|
||
|
(timestamp)
|
||
|
] @string.special
|
||
|
|
||
|
[
|
||
|
(keyword_left)
|
||
|
(keyword_inner)
|
||
|
(keyword_right)
|
||
|
(keyword_full)
|
||
|
(keyword_csv)
|
||
|
(keyword_json)
|
||
|
] @function.method
|
||
|
|
||
|
[
|
||
|
(keyword_true)
|
||
|
(keyword_false)
|
||
|
] @constant.builtin.boolean
|
||
|
|
||
|
[
|
||
|
(keyword_and)
|
||
|
(keyword_or)
|
||
|
] @keyword.operator
|
||
|
|
||
|
(function_definition
|
||
|
(keyword_func)
|
||
|
name: (identifier) @function)
|
||
|
|
||
|
(parameter
|
||
|
(identifier) @variable.parameter)
|
||
|
|
||
|
(variable
|
||
|
(keyword_let)
|
||
|
name: (identifier) @constant)
|