Fix `@screen` highlighting for Vetur SFC PostCSS styles (#538)
parent
d28ebbc9a1
commit
68682298b9
|
@ -73,7 +73,6 @@
|
||||||
"path": "./syntaxes/at-rules.tmLanguage.json",
|
"path": "./syntaxes/at-rules.tmLanguage.json",
|
||||||
"injectTo": [
|
"injectTo": [
|
||||||
"source.css",
|
"source.css",
|
||||||
"source.css.postcss",
|
|
||||||
"source.vue",
|
"source.vue",
|
||||||
"source.svelte",
|
"source.svelte",
|
||||||
"text.html"
|
"text.html"
|
||||||
|
@ -86,6 +85,13 @@
|
||||||
"source.css.scss"
|
"source.css.scss"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"scopeName": "tailwindcss.at-rules.postcss.injection",
|
||||||
|
"path": "./syntaxes/at-rules.postcss.tmLanguage.json",
|
||||||
|
"injectTo": [
|
||||||
|
"source.css.postcss"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"scopeName": "tailwindcss.at-apply.injection",
|
"scopeName": "tailwindcss.at-apply.injection",
|
||||||
"path": "./syntaxes/at-apply.tmLanguage.json",
|
"path": "./syntaxes/at-apply.tmLanguage.json",
|
||||||
|
|
|
@ -0,0 +1,213 @@
|
||||||
|
{
|
||||||
|
"scopeName": "tailwindcss.at-rules.injection",
|
||||||
|
"fileTypes": [],
|
||||||
|
"injectionSelector": "L:source.css.postcss -comment",
|
||||||
|
"name": "TailwindCSS",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"begin": "(?i)((@)tailwind)(?=\\s|/\\*|$)",
|
||||||
|
"beginCaptures": {
|
||||||
|
"1": {
|
||||||
|
"name": "keyword.control.at-rule.tailwind.tailwind"
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"name": "punctuation.definition.keyword.css"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": ";",
|
||||||
|
"endCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.terminator.tailwind.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name": "meta.at-rule.tailwind.css",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css#comment-block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss#double-slash"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css#escapes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"match": "[^\\s;]+?",
|
||||||
|
"name": "variable.parameter.tailwind.tailwind"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "(?i)((@)screen)(?=[\\s{]|/\\*|$)",
|
||||||
|
"beginCaptures": {
|
||||||
|
"1": {
|
||||||
|
"name": "keyword.control.at-rule.screen.tailwind"
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"name": "punctuation.definition.keyword.css"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "(?<=})(?!\\G)",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css#comment-block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss#double-slash"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"match": "[^\\s{]+?",
|
||||||
|
"name": "variable.parameter.screen.tailwind"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "{",
|
||||||
|
"beginCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.screen.begin.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "}",
|
||||||
|
"endCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.screen.end.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name": "meta.at-rule.screen.body.tailwind",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "(?i)((@)layer)(?=[\\s{]|/\\*|$)",
|
||||||
|
"beginCaptures": {
|
||||||
|
"1": {
|
||||||
|
"name": "keyword.control.at-rule.layer.tailwind"
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"name": "punctuation.definition.keyword.css"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "(?<=})(?!\\G)",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css#comment-block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss#double-slash"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"match": "[^\\s{]+?",
|
||||||
|
"name": "variable.parameter.layer.tailwind"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "{",
|
||||||
|
"beginCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.layer.begin.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "}",
|
||||||
|
"endCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.layer.end.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name": "meta.at-rule.layer.body.tailwind",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "(?i)((@)variants)(?=[\\s{]|/\\*|$)",
|
||||||
|
"beginCaptures": {
|
||||||
|
"1": {
|
||||||
|
"name": "keyword.control.at-rule.variants.tailwind"
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"name": "punctuation.definition.keyword.css"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "(?<=})(?!\\G)",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css#comment-block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss#double-slash"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"match": "[^\\s{,]+?",
|
||||||
|
"name": "variable.parameter.variants.tailwind"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "{",
|
||||||
|
"beginCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.variants.begin.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "}",
|
||||||
|
"endCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.variants.end.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name": "meta.at-rule.variants.body.tailwind",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "(?i)((@)responsive)(?=[\\s{]|/\\*|$)",
|
||||||
|
"beginCaptures": {
|
||||||
|
"1": {
|
||||||
|
"name": "keyword.control.at-rule.responsive.tailwind"
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"name": "punctuation.definition.keyword.css"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "(?<=})(?!\\G)",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css#comment-block"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss#double-slash"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"begin": "{",
|
||||||
|
"beginCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.responsive.begin.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"end": "}",
|
||||||
|
"endCaptures": {
|
||||||
|
"0": {
|
||||||
|
"name": "punctuation.section.responsive.end.bracket.curly.tailwind"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name": "meta.at-rule.responsive.body.tailwind",
|
||||||
|
"patterns": [
|
||||||
|
{
|
||||||
|
"include": "source.css.postcss"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue