tm-grammars
Version:
Collecton of TextMate grammars in JSON
81 lines (80 loc) • 1.6 kB
JSON
{
"injectTo": [
"source.ts.ng"
],
"injectionSelector": "L:meta.decorator.ts -comment -text.html",
"name": "angular-inline-template",
"patterns": [
{
"include": "#inlineTemplate"
}
],
"repository": {
"inlineTemplate": {
"begin": "(template)\\s*(:)",
"beginCaptures": {
"1": {
"name": "meta.object-literal.key.ts"
},
"2": {
"name": "meta.object-literal.key.ts punctuation.separator.key-value.ts"
}
},
"end": "(?=[,}])",
"patterns": [
{
"include": "#tsParenExpression"
},
{
"include": "#ngTemplate"
}
]
},
"ngTemplate": {
"begin": "\\G\\s*([\"'`|])",
"beginCaptures": {
"1": {
"name": "string"
}
},
"contentName": "text.html.derivative.ng",
"end": "\\1",
"endCaptures": {
"0": {
"name": "string"
}
},
"patterns": [
{
"include": "text.html.derivative.ng"
},
{
"include": "template.ng"
}
]
},
"tsParenExpression": {
"begin": "\\G\\s*(\\()",
"beginCaptures": {
"1": {
"name": "meta.brace.round.ts"
}
},
"end": "\\)",
"endCaptures": {
"0": {
"name": "meta.brace.round.ts"
}
},
"patterns": [
{
"include": "#tsParenExpression"
},
{
"include": "#ngTemplate"
}
]
}
},
"scopeName": "inline-template.ng"
}