Skip to content

Commit ae5d91e

Browse files
authored
Fix template.expression brackets microsoft#190564 (microsoft#245786)
1 parent be37d18 commit ae5d91e

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

extensions/javascript/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@
6969
"meta.embedded.expression.js": "javascriptreact"
7070
},
7171
"tokenTypes": {
72-
"meta.template.expression": "other",
73-
"meta.template.expression string": "string",
74-
"meta.template.expression comment": "comment",
72+
"punctuation.definition.template-expression": "other",
7573
"entity.name.type.instance.jsdoc": "other",
7674
"entity.name.function.tagged-template": "other",
7775
"meta.import string.quoted": "other",
@@ -89,9 +87,7 @@
8987
"meta.embedded.expression.js": "javascript"
9088
},
9189
"tokenTypes": {
92-
"meta.template.expression": "other",
93-
"meta.template.expression string": "string",
94-
"meta.template.expression comment": "comment",
90+
"punctuation.definition.template-expression": "other",
9591
"entity.name.type.instance.jsdoc": "other",
9692
"entity.name.function.tagged-template": "other",
9793
"meta.import string.quoted": "other",

extensions/typescript-basics/package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@
7575
"keyword.operator.assignment.compound.bitwise.ts"
7676
],
7777
"tokenTypes": {
78-
"meta.template.expression": "other",
79-
"meta.template.expression string": "string",
80-
"meta.template.expression comment": "comment",
78+
"punctuation.definition.template-expression": "other",
8179
"entity.name.type.instance.jsdoc": "other",
8280
"entity.name.function.tagged-template": "other",
8381
"meta.import string.quoted": "other",
@@ -102,9 +100,7 @@
102100
"meta.embedded.expression.tsx": "typescriptreact"
103101
},
104102
"tokenTypes": {
105-
"meta.template.expression": "other",
106-
"meta.template.expression string": "string",
107-
"meta.template.expression comment": "comment",
103+
"punctuation.definition.template-expression": "other",
108104
"entity.name.type.instance.jsdoc": "other",
109105
"entity.name.function.tagged-template": "other",
110106
"meta.import string.quoted": "other",

0 commit comments

Comments
 (0)