Skip to content

Commit 5900899

Browse files
committed
Fix quick suggestions not shown in ${| template string
Fixes microsoft#37176
1 parent fd18274 commit 5900899

4 files changed

Lines changed: 8 additions & 12 deletions

File tree

extensions/javascript/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@
6161
},
6262
"tokenTypes": {
6363
"entity.name.type.instance.jsdoc": "other",
64-
"entity.name.function.tagged-template.js": "other",
65-
"entity.name.function.tagged-template.js.jsx": "other",
64+
"entity.name.function.tagged-template": "other",
6665
"meta.import string.quoted": "other"
6766
}
6867
},
@@ -78,8 +77,7 @@
7877
},
7978
"tokenTypes": {
8079
"entity.name.type.instance.jsdoc": "other",
81-
"entity.name.function.tagged-template.js": "other",
82-
"entity.name.function.tagged-template.js.jsx": "other",
80+
"entity.name.function.tagged-template": "other",
8381
"meta.import string.quoted": "other"
8482
}
8583
},

extensions/typescript-basics/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@
4545
"path": "./syntaxes/TypeScript.tmLanguage.json",
4646
"tokenTypes": {
4747
"entity.name.type.instance.jsdoc": "other",
48-
"entity.name.function.tagged-template.ts": "other",
49-
"entity.name.function.tagged-template.tsx": "other",
48+
"entity.name.function.tagged-template": "other",
5049
"meta.import string.quoted": "other"
5150
}
5251
},
@@ -62,8 +61,7 @@
6261
},
6362
"tokenTypes": {
6463
"entity.name.type.instance.jsdoc": "other",
65-
"entity.name.function.tagged-template.ts": "other",
66-
"entity.name.function.tagged-template.tsx": "other",
64+
"entity.name.function.tagged-template": "other",
6765
"meta.import string.quoted": "other"
6866
}
6967
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"vscode-debugprotocol": "1.28.0",
4747
"vscode-nsfw": "1.0.17",
4848
"vscode-ripgrep": "^0.8.1",
49-
"vscode-textmate": "^3.3.2",
49+
"vscode-textmate": "^3.3.3",
5050
"vscode-xterm": "3.3.0-beta8",
5151
"yauzl": "2.8.0"
5252
},

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5920,9 +5920,9 @@ vscode-ripgrep@^0.8.1:
59205920
version "0.8.1"
59215921
resolved "https://registry.yarnpkg.com/vscode-ripgrep/-/vscode-ripgrep-0.8.1.tgz#861d2ac97a3764e9f40f305620423efc50632ad1"
59225922

5923-
vscode-textmate@^3.3.2:
5924-
version "3.3.2"
5925-
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-3.3.2.tgz#43d7722d24ed168d195a1e3c582c6914917a37ab"
5923+
vscode-textmate@^3.3.3:
5924+
version "3.3.3"
5925+
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-3.3.3.tgz#8d737f2965046503a4088d47c2793aebe246d355"
59265926
dependencies:
59275927
fast-plist "^0.1.2"
59285928
oniguruma "^6.0.1"

0 commit comments

Comments
 (0)