mirror of https://github.com/helix-editor/helix
Change twig tree-sitter grammar (#4176)
parent
a079f2c9bd
commit
9f36468b15
@ -1,16 +1,60 @@
|
|||||||
(comment_directive) @comment
|
(comment) @comment
|
||||||
|
|
||||||
|
(filter_identifier) @function.method
|
||||||
|
(function_identifier) @function.method
|
||||||
|
(test) @function.builtin
|
||||||
|
(variable) @variable
|
||||||
|
(string) @string
|
||||||
|
(interpolated_string) @string
|
||||||
|
(operator) @operator
|
||||||
|
(number) @constant.numeric.integer
|
||||||
|
(boolean) @constant.builtin.boolean
|
||||||
|
(null) @constant.builtin
|
||||||
|
(keyword) @keyword
|
||||||
|
(attribute) @attribute
|
||||||
|
(tag) @tag
|
||||||
|
(conditional) @keyword.control.conditional
|
||||||
|
(repeat) @keyword.control.repeat
|
||||||
|
(method) @function.method
|
||||||
|
(parameter) @variable.parameter
|
||||||
|
|
||||||
[
|
[
|
||||||
"{%"
|
"{{"
|
||||||
"{%-"
|
"}}"
|
||||||
"{%~"
|
"{{-"
|
||||||
"%}"
|
"-}}"
|
||||||
"-%}"
|
"{{~"
|
||||||
"~%}"
|
"~}}"
|
||||||
"{{"
|
"{%"
|
||||||
"{{-"
|
"%}"
|
||||||
"{{~"
|
"{%-"
|
||||||
"}}"
|
"-%}"
|
||||||
"-}}"
|
"{%~"
|
||||||
"~}}"
|
"~%}"
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
","
|
||||||
|
"."
|
||||||
|
"?"
|
||||||
|
":"
|
||||||
|
"="
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
(interpolated_string [
|
||||||
|
"#{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.delimiter)
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
(hash [
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue