-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecon.sublime-syntax
More file actions
224 lines (211 loc) · 5.73 KB
/
Recon.sublime-syntax
File metadata and controls
224 lines (211 loc) · 5.73 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
%YAML 1.2
---
name: Recon
file_extensions:
- recon
- recondb
scope: source.recon
variables:
name_start_char: '[A-Z_a-z]' # '[A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\U00010000-\U000EFFFF]'
name_char: '[-0-9A-Z_a-z]' # '[-0-9A-Z_a-z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u0300-\u036F\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\U00010000-\U000EFFFF]'
base64_char: '[A-Za-z0-9+/]'
base64_eq_char: '[A-Za-z0-9+/=]'
ident: '{{name_start_char}}{{name_char}}*'
contexts:
main:
- include: attr
- include: block
- include: record
- include: markup
- include: ident
- include: string
- include: number
- include: data
- include: comment
- match: ':'
captures:
0: punctuation.separator.slot.recon
push: slot
- match: '[,;]'
scope: punctuation.separator.block.recon
block:
- match: '\('
captures:
0: punctuation.definition.block.begin.recon
push:
- meta_scope: meta.structure.block.recon
- match: '\)'
captures:
0: punctuation.definition.block.end.recon
pop: true
- include: attr
- include: block
- include: record
- include: markup
- include: ident
- include: string
- include: number
- include: data
- include: comment
- match: ':'
captures:
0: punctuation.separator.slot.recon
push: slot
- match: '[,;]'
scope: punctuation.separator.item.recon
attr:
- match: '@'
captures:
0: punctuation.definition.attr.recon
push:
- meta_scope: storage.type.attr.recon
- match: '{{ident}}?'
captures:
0: punctuation.separator.slot.recon
- match: '"'
captures:
0: punctuation.definition.string.begin.recon
push:
- match: '"'
captures:
0: punctuation.definition.string.end.recon
pop: true
- match: '\\[\\/@{}\[\]bfnrt]'
scope: constant.character.escape.recon
- match: \\.
scope: invalid.illegal.string.escape.recon
- match: '[\@\{\}\[\]\b\f\n\r\t]'
scope: invalid.illegal.string.char.recon
- match: '(?=\S)'
pop: true
slot:
- meta_content_scope: meta.structure.slot.value.recon
- include: attr
- include: block
- include: record
- include: markup
- include: ident_value
- include: string
- include: number
- include: data
- include: comment
- match: '[,;\r\n]'
captures:
0: punctuation.separator.record.recon
pop: true
record:
- match: '\{'
captures:
0: punctuation.definition.record.begin.recon
push:
- meta_scope: meta.structure.record.recon
- match: '\}'
captures:
0: punctuation.definition.record.end.recon
pop: true
- include: attr
- include: block
- include: record
- include: markup
- include: ident
- include: string
- include: number
- include: data
- include: comment
- match: ':'
captures:
0: punctuation.separator.slot.recon
push: slot
- match: '[,;]'
scope: punctuation.separator.item.recon
markup:
- match: '\['
captures:
0: punctuation.definition.markup.begin.recon
push:
- meta_scope: markup.other.recon
- match: '\]'
captures:
0: punctuation.definition.markup.end.recon
pop: true
- include: attr
- include: block
- include: record
- include: markup
- match: '\\[\\/@{}\[\]bfnrt]'
scope: constant.character.escape.recon
- match: \\.
scope: invalid.illegal.markup.escape.recon
- match: '[\@\{\}\[\]\b\f\n\r\t]'
scope: invalid.illegal.markup.char.recon
ident:
- match: '{{ident}}'
scope: variable.other.ident.recon
ident_value:
- match: '{{ident}}'
scope: string.unquoted.ident.recon
string:
- match: '"'
captures:
0: punctuation.definition.string.begin.recon
push:
- meta_scope: string.quoted.double.recon
- match: '"'
captures:
0: punctuation.definition.string.end.recon
pop: true
- match: '\\[\\/@{}\[\]bfnrt]'
scope: constant.character.escape.recon
- match: \\.
scope: invalid.illegal.string.escape.recon
- match: '[\@\{\}\[\]\b\f\n\r\t]'
scope: invalid.illegal.string.char.recon
number:
- match: |-
(?x:
-?
(?:
0
|
[1-9]
[0-9]*
)
(?:
(?:
\.
[0-9]+
)?
(?:
[Ee]
[+-]?
[0-9]+
)?
)?
)
scope: constant.numeric.recon
data:
- match: |-
(?x:
(%)
(
{{base64_char}}{4}*
(?:
{{base64_char}}{2}
(?:
{{base64_char}}=
|
==
)
)?
)
({{base64_eq_char}}*)
)
captures:
1: keyword.operator.data.recon
2: constant.other.data.recon
3: invalid.illegal.data.base64.recon
comment:
- match: (#).*$\n?
scope: comment.line.hash.recon
captures:
1: punctuation.definition.comment.recon