mirror of https://github.com/helix-editor/helix
Improvements to Meson syntax. (#4572)
Co-authored-by: Garrett D'Amore <garrett.damore@weka.io> Co-authored-by: Michael Davis <mcarsondavis@gmail.com>pull/4781/head
parent
70ebbd018a
commit
f843967059
@ -1,62 +1,62 @@
|
|||||||
(string_literal) @string
|
(comment) @comment
|
||||||
|
|
||||||
(boolean_literal) @constant.builtin.boolean
|
; these are listed first, because they override keyword queries
|
||||||
(integer_literal) @constant.numeric.integer
|
(function_expression (identifier) @function)
|
||||||
|
|
||||||
(comment) @comment.line
|
|
||||||
(function_id) @function
|
|
||||||
(keyword_arg_key) @variable.other.member
|
|
||||||
(id_expression) @variable
|
|
||||||
|
|
||||||
[
|
[
|
||||||
"if"
|
(assignment_operator)
|
||||||
"elif"
|
(additive_operator)
|
||||||
"else"
|
(multiplicative_operator)
|
||||||
"endif"
|
(equality_operator)
|
||||||
] @keyword.control.conditional
|
">="
|
||||||
|
"<="
|
||||||
|
"<"
|
||||||
|
">"
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
] @operator
|
||||||
|
|
||||||
[
|
[
|
||||||
"foreach"
|
(and)
|
||||||
"endforeach"
|
(or)
|
||||||
] @keyword.control.repeat
|
(not)
|
||||||
|
(in)
|
||||||
|
] @keyword.operator
|
||||||
|
|
||||||
[
|
[
|
||||||
"break"
|
"(" ")" "[" "]" "{" "}"
|
||||||
"continue"
|
] @punctuation.bracket
|
||||||
] @keyword.control
|
|
||||||
|
|
||||||
[
|
[
|
||||||
"not"
|
(if)
|
||||||
"in"
|
(elif)
|
||||||
"and"
|
(else)
|
||||||
"or"
|
(endif)
|
||||||
] @keyword.operator
|
] @keyword.control.conditional
|
||||||
|
|
||||||
[
|
[
|
||||||
"!"
|
(foreach)
|
||||||
"+"
|
(endforeach)
|
||||||
"-"
|
(break)
|
||||||
"*"
|
(continue)
|
||||||
"/"
|
] @keyword.control.repeat
|
||||||
"%"
|
|
||||||
"=="
|
(boolean_literal) @constant.builtin.boolean
|
||||||
"!="
|
(int_literal) @constant.numeric.integer
|
||||||
">"
|
|
||||||
"<"
|
(keyword_argument keyword: (identifier) @variable.parameter)
|
||||||
">="
|
(escape_sequence) @constant.character.escape
|
||||||
"<="
|
(bad_escape) @warning
|
||||||
] @operator
|
|
||||||
|
|
||||||
[
|
[
|
||||||
":"
|
"."
|
||||||
","
|
","
|
||||||
|
":"
|
||||||
] @punctuation.delimiter
|
] @punctuation.delimiter
|
||||||
|
|
||||||
[
|
[
|
||||||
"("
|
(string_literal)
|
||||||
")"
|
(fstring_literal)
|
||||||
"["
|
] @string
|
||||||
"]"
|
|
||||||
"{"
|
(identifier) @variable
|
||||||
"}"
|
|
||||||
] @punctuation.bracket
|
|
||||||
|
Loading…
Reference in New Issue