166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
- match: '(@)([^@\s¬]*)'
scope: string.morph
captures:
1: entity.valid
2: string.morph.regex
- match: '(\$)([^@\s¬]*)'
scope: string.morph
captures:
1: entity.valid
2: string.morph.regex
- match: '(/)[\w-]+'
scope: string.tag
captures:
1: entity.valid
- match: '(?<=[^\w])([*][a-zA-Z0-9_]+)'
scope: string.morph
|
|
>
>
>
>
>
>
|
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
|
- match: '(@)([^@\s¬]*)'
scope: string.morph
captures:
1: entity.valid
2: string.morph.regex
- match: '(\$)([^\s¬]*)'
scope: string.morph
captures:
1: entity.valid
2: string.morph.regex
- match: '(&)([^\s¬]*)'
scope: string.morph
captures:
1: entity.valid
2: string.mt.morph.regex
- match: '(/)[\w-]+'
scope: string.tag
captures:
1: entity.valid
- match: '(?<=[^\w])([*][a-zA-Z0-9_]+)'
scope: string.morph
|