Fixes #134662: Configure strings and comments embedded in template expressions to be identified as strings and comments
parent
b0b05ea802
commit
174db5eb99
|
@ -68,6 +68,8 @@
|
|||
},
|
||||
"tokenTypes": {
|
||||
"meta.template.expression": "other",
|
||||
"meta.template.expression string": "string",
|
||||
"meta.template.expression comment": "comment",
|
||||
"entity.name.type.instance.jsdoc": "other",
|
||||
"entity.name.function.tagged-template": "other",
|
||||
"meta.import string.quoted": "other",
|
||||
|
@ -86,6 +88,8 @@
|
|||
},
|
||||
"tokenTypes": {
|
||||
"meta.template.expression": "other",
|
||||
"meta.template.expression string": "string",
|
||||
"meta.template.expression comment": "comment",
|
||||
"entity.name.type.instance.jsdoc": "other",
|
||||
"entity.name.function.tagged-template": "other",
|
||||
"meta.import string.quoted": "other",
|
||||
|
|
|
@ -60,6 +60,8 @@
|
|||
"path": "./syntaxes/TypeScript.tmLanguage.json",
|
||||
"tokenTypes": {
|
||||
"meta.template.expression": "other",
|
||||
"meta.template.expression string": "string",
|
||||
"meta.template.expression comment": "comment",
|
||||
"entity.name.type.instance.jsdoc": "other",
|
||||
"entity.name.function.tagged-template": "other",
|
||||
"meta.import string.quoted": "other",
|
||||
|
@ -78,6 +80,8 @@
|
|||
},
|
||||
"tokenTypes": {
|
||||
"meta.template.expression": "other",
|
||||
"meta.template.expression string": "string",
|
||||
"meta.template.expression comment": "comment",
|
||||
"entity.name.type.instance.jsdoc": "other",
|
||||
"entity.name.function.tagged-template": "other",
|
||||
"meta.import string.quoted": "other",
|
||||
|
|
Loading…
Reference in New Issue