diff options
Diffstat (limited to 'queries/t32/highlights.scm')
| -rw-r--r-- | queries/t32/highlights.scm | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/queries/t32/highlights.scm b/queries/t32/highlights.scm new file mode 100644 index 000000000..9fd1816ba --- /dev/null +++ b/queries/t32/highlights.scm @@ -0,0 +1,141 @@ +[ + "=" + "^^" + "||" + "&&" + "+" + "-" + "*" + "/" + "%" + "|" + "^" + "==" + "!=" + ">" + ">=" + "<=" + "<" + "<<" + ">>" + ".." + "--" + "++" + "+" + "-" + "~" + "!" + "&" + "->" + "*" +] @operator + +[ + "(" + ")" + "{" + "}" + "[" + "]" +] @punctuation.bracket + +[ + "," + "." + ";" +] @punctuation.delimiter + +[ + (access_class) + (address) + (bitmask) + (file_handle) + (frequency) + (integer) + (percentage) + (time) +] @number + +(float) @float + +(string) @string + +(path) @string.special + +(symbol) @symbol + +(character) @character + +; Commands +(command_expression + command: (identifier) @keyword) +(macro_definition + command: (identifier) @keyword) + +; Returns +( + (command_expression + command: (identifier) @keyword.return) + (#match? @keyword.return "^[eE][nN][dD]([dD][oO])?$") +) +( + (command_expression + command: (identifier) @keyword.return) + (#match? @keyword.return "^[rR][eE][tT][uU][rR][nN]$") +) + +; Subroutine calls +(subroutine_call_expression + command: (identifier) @keyword + subroutine: (identifier) @function.call) + +; Variables, constants and labels +(macro) @variable.builtin +(internal_c_variable) @variable.builtin + +(argument_list + (identifier) @constant) +( + (argument_list (identifier) @constant.builtin) + (#match? @constant.builtin "^[%/][a-zA-Z][a-zA-Z0-9.]*$") +) + +( + (command_expression + command: (identifier) @keyword + arguments: (argument_list . (identifier) @label)) + (#match? @keyword "^[gG][oO][tT][oO]$") +) +(labeled_expression + label: (identifier) @label) + +; Subroutine blocks +(subroutine_block + command: (identifier) @keyword + subroutine: (identifier) @function) + +(labeled_expression + label: (identifier) @function + (block)) + +; Parameter declarations +(parameter_declaration + command: (identifier) @keyword + macro: (macro) @parameter) + +; Control flow +(if_block + command: (identifier) @conditional) +(else_block + command: (identifier) @conditional) + +(while_block + command: (identifier) @repeat) +(repeat_block + command: (identifier) @repeat) + +(call_expression + function: (identifier) @function.builtin) + +(type_identifier) @type +(comment) @comment @spell |
