File tree Expand file tree Collapse file tree 1 file changed +64
-1
lines changed
packages/vscode-tailwindcss/syntaxes Expand file tree Collapse file tree 1 file changed +64
-1
lines changed Original file line number Diff line number Diff line change 160
160
"patterns" : [
161
161
{
162
162
"include" : " source.css#string"
163
+ },
164
+ {
165
+ "begin" : " {" ,
166
+ "beginCaptures" : {
167
+ "0" : {
168
+ "name" : " punctuation.section.plugin.begin.bracket.curly.tailwind"
169
+ }
170
+ },
171
+ "end" : " }" ,
172
+ "endCaptures" : {
173
+ "0" : {
174
+ "name" : " punctuation.section.plugin.end.bracket.curly.tailwind"
175
+ }
176
+ },
177
+ "name" : " meta.at-rule.plugin.body.tailwind" ,
178
+ "patterns" : [
179
+ {
180
+ "include" : " #property-list"
181
+ }
182
+ ]
163
183
}
164
184
]
165
185
},
384
404
}
385
405
]
386
406
}
387
- ]
407
+ ],
408
+ "repository" : {
409
+ "property-list" : {
410
+ "patterns" : [
411
+ {
412
+ "begin" : " (?<![-a-zA-Z])(?=[-a-zA-Z])" ,
413
+ "end" : " $|(?![-a-zA-Z])" ,
414
+ "name" : " meta.property-name.css" ,
415
+ "patterns" : [
416
+ {
417
+ "include" : " source.css#property-names"
418
+ }
419
+ ]
420
+ },
421
+ {
422
+ "begin" : " (:)\\ s*" ,
423
+ "beginCaptures" : {
424
+ "1" : {
425
+ "name" : " punctuation.separator.key-value.css"
426
+ }
427
+ },
428
+ "end" : " \\ s*(;)|\\ s*(?=}|\\ ))" ,
429
+ "endCaptures" : {
430
+ "1" : {
431
+ "name" : " punctuation.terminator.rule.css"
432
+ }
433
+ },
434
+ "contentName" : " meta.property-value.css" ,
435
+ "patterns" : [
436
+ {
437
+ "include" : " source.css#comment-block"
438
+ },
439
+ {
440
+ "include" : " source.css#property-values"
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "match" : " ;" ,
446
+ "name" : " punctuation.terminator.rule.css"
447
+ }
448
+ ]
449
+ }
450
+ }
388
451
}
You can’t perform that action at this time.
0 commit comments