Skip to content

Commit 95a406b

Browse files
committed
Mark import paths as other type instead of string
Ensures that quick suggestions work properly Fixes microsoft#46142
1 parent e96cd3b commit 95a406b

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

extensions/javascript/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
"tokenTypes": {
6363
"entity.name.type.instance.jsdoc": "other",
6464
"entity.name.function.tagged-template.js": "other",
65-
"entity.name.function.tagged-template.js.jsx": "other"
65+
"entity.name.function.tagged-template.js.jsx": "other",
66+
"meta.import string.quoted": "other"
6667
}
6768
},
6869
{
@@ -78,7 +79,8 @@
7879
"tokenTypes": {
7980
"entity.name.type.instance.jsdoc": "other",
8081
"entity.name.function.tagged-template.js": "other",
81-
"entity.name.function.tagged-template.js.jsx": "other"
82+
"entity.name.function.tagged-template.js.jsx": "other",
83+
"meta.import string.quoted": "other"
8284
}
8385
},
8486
{

extensions/typescript-basics/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
"tokenTypes": {
4747
"entity.name.type.instance.jsdoc": "other",
4848
"entity.name.function.tagged-template.ts": "other",
49-
"entity.name.function.tagged-template.tsx": "other"
49+
"entity.name.function.tagged-template.tsx": "other",
50+
"meta.import string.quoted": "other"
5051
}
5152
},
5253
{
@@ -62,7 +63,8 @@
6263
"tokenTypes": {
6364
"entity.name.type.instance.jsdoc": "other",
6465
"entity.name.function.tagged-template.ts": "other",
65-
"entity.name.function.tagged-template.tsx": "other"
66+
"entity.name.function.tagged-template.tsx": "other",
67+
"meta.import string.quoted": "other"
6668
}
6769
}
6870
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"vscode-debugprotocol": "1.27.0",
4747
"vscode-nsfw": "1.0.17",
4848
"vscode-ripgrep": "^0.8.1",
49-
"vscode-textmate": "^3.3.1",
49+
"vscode-textmate": "^3.3.2",
5050
"vscode-xterm": "3.3.0-beta7",
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.1:
5924-
version "3.3.1"
5925-
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-3.3.1.tgz#f5b80bca795795e333660c648edba3a715b1e405"
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"
59265926
dependencies:
59275927
fast-plist "^0.1.2"
59285928
oniguruma "^6.0.1"

0 commit comments

Comments
 (0)