mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
34489a2494
This commit adds the following: - Syntax builder scripts to make syntaxes easier to read and edit - Syntax highlight in single quote attributes - Syntax highlight for slot props - Basic syntax highlight for xpaths - Added `Switch Below` command This commit fixes the following: - Using `Switch Besides` or `Switch Below` does not open a new panel if one was already open - Fixed missing space in component's snippet indentation
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"injectionSelector": "L:source.js -comment -(string -meta.embedded)",
|
|
"scopeName": "owl.template.inline",
|
|
"patterns": [
|
|
{
|
|
"include": "#xml-tag"
|
|
}
|
|
],
|
|
"repository": {
|
|
"xml-tag": {
|
|
"begin": "\\s+(xml)(`)",
|
|
"contentName": "meta.embedded.block.xml",
|
|
"beginCaptures": {
|
|
"1": {
|
|
"name": "entity.name.function.tagged-template.js"
|
|
},
|
|
"2": {
|
|
"name": "punctuation.definition.string.template.begin.js"
|
|
}
|
|
},
|
|
"end": "(`)",
|
|
"endCaptures": {
|
|
"0": {
|
|
"name": "string.js"
|
|
},
|
|
"1": {
|
|
"name": "punctuation.definition.string.template.end.js"
|
|
}
|
|
},
|
|
"patterns": [
|
|
{
|
|
"include": "owl.template"
|
|
},
|
|
{
|
|
"include": "text.xml"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |