mirror of https://github.com/helix-editor/helix
Update tree-sitter-robot (#7970)
* Update tree-sitter-robot * Update Robot highlights query for Helix * Change @comment.single to @comment Co-authored-by: Michael Davis <mcarsondavis@gmail.com> --------- Co-authored-by: Michael Davis <mcarsondavis@gmail.com>pull/7998/head
parent
2b7e7c80eb
commit
18a79aa3bf
@ -1,21 +1,59 @@
|
|||||||
(comment) @comment
|
[
|
||||||
|
(comment)
|
||||||
|
(extra_text)
|
||||||
|
] @comment
|
||||||
|
|
||||||
|
[
|
||||||
|
(section_header)
|
||||||
|
(setting_statement)
|
||||||
|
(keyword_setting)
|
||||||
|
(test_case_setting)
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
(variable_definition (variable_name) @variable)
|
||||||
|
(keyword_definition (name) @function)
|
||||||
|
(test_case_definition (name) @function)
|
||||||
|
|
||||||
|
(keyword_invocation (keyword) @function)
|
||||||
(ellipses) @punctuation.delimiter
|
(ellipses) @punctuation.delimiter
|
||||||
|
|
||||||
(section_header) @keyword
|
(text_chunk) @string
|
||||||
(extra_text) @comment
|
(inline_python_expression) @string.special
|
||||||
|
[
|
||||||
|
(scalar_variable)
|
||||||
|
(list_variable)
|
||||||
|
(dictionary_variable)
|
||||||
|
] @variable
|
||||||
|
|
||||||
(setting_statement) @keyword
|
; Control structures
|
||||||
|
|
||||||
(variable_definition (variable_name) @variable)
|
"RETURN" @keyword.control.return
|
||||||
|
|
||||||
(keyword_definition (name) @function)
|
[
|
||||||
(keyword_definition (body (keyword_setting) @keyword))
|
"FOR"
|
||||||
|
"IN"
|
||||||
|
"IN RANGE"
|
||||||
|
"IN ENUMERATE"
|
||||||
|
"IN ZIP"
|
||||||
|
(break_statement)
|
||||||
|
(continue_statement)
|
||||||
|
] @keyword.control.repeat
|
||||||
|
(for_statement "END" @keyword.control.repeat)
|
||||||
|
|
||||||
(test_case_definition (name) @property)
|
"WHILE" @keyword.control.repeat
|
||||||
|
(while_statement "END" @keyword.control.repeat)
|
||||||
|
|
||||||
(keyword_invocation (keyword) @function)
|
[
|
||||||
|
"IF"
|
||||||
|
"ELSE IF"
|
||||||
|
] @keyword.control.conditional
|
||||||
|
(if_statement "END" @keyword.control.conditional)
|
||||||
|
(if_statement (else_statement "ELSE" @keyword.control.conditional))
|
||||||
|
|
||||||
(argument (text_chunk) @string)
|
[
|
||||||
(argument (scalar_variable) @string.special)
|
"TRY"
|
||||||
(argument (list_variable) @string.special)
|
"EXCEPT"
|
||||||
(argument (dictionary_variable) @string.special)
|
"FINALLY"
|
||||||
|
] @keyword.control.exception
|
||||||
|
(try_statement "END" @keyword.control.exception)
|
||||||
|
(try_statement (else_statement "ELSE" @keyword.control.exception))
|
||||||
|
Loading…
Reference in New Issue