Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/regex/highlights.scm')
| -rw-r--r-- | runtime/queries/regex/highlights.scm | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/runtime/queries/regex/highlights.scm b/runtime/queries/regex/highlights.scm deleted file mode 100644 index 0e81a3e7..00000000 --- a/runtime/queries/regex/highlights.scm +++ /dev/null @@ -1,52 +0,0 @@ -; upstream: https://github.com/tree-sitter/tree-sitter-regex/blob/e1cfca3c79896ff79842f057ea13e529b66af636/queries/highlights.scm - -[ - "(" - ")" - "(?" - "(?:" - "(?<" - ">" - "[" - "]" - "{" - "}" -] @punctuation.bracket - -[ - "*" - "+" - "|" - "=" - "<=" - "!" - "<!" - "?" -] @operator - -[ - (identity_escape) - (control_letter_escape) - (character_class_escape) - (control_escape) - (start_assertion) - (end_assertion) - (boundary_assertion) - (non_boundary_assertion) -] @constant.character.escape - -(group_name) @label - -(count_quantifier - [ - (decimal_digits) @constant.numeric - "," @punctuation.delimiter - ]) - -(character_class - [ - "^" @operator - (class_range "-" @operator) - ]) - -(class_character) @constant.character |