blob: 350d1d0f3a05709868921226a80c7839ed22654b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
; Forked from tree-sitter-regex
; The MIT License (MIT) Copyright (c) 2014 Max Brunsfeld
[
"("
")"
"(?"
"(?:"
"(?<"
"<"
">"
"["
"]"
"{"
"}"
] @punctuation.bracket
(group_name) @property
; These are escaped special characters that lost their special meaning
; -> no special highlighting
(identity_escape) @string.regexp
(class_character) @constant
(decimal_digits) @number
[
(control_letter_escape)
(character_class_escape)
(control_escape)
(boundary_assertion)
(non_boundary_assertion)
] @string.escape
[
"*"
"+"
"?"
"|"
"="
"!"
"-"
"\\k"
(lazy)
] @operator
[
(start_assertion)
(end_assertion)
","
] @punctuation.delimiter
(any_character) @variable.builtin
|