Support quickSuggestions in JSDoc Types (#46001)

* Support quickSuggestions in JSDoc Types

Fixes #43715

Requires vscode-textmate 3.3.1 before merging

* Pick up new vscode textmate version
This commit is contained in:
Matt Bierner
2018-03-16 15:14:44 -07:00
committed by GitHub
parent e48a3284f4
commit d74145ed78
7 changed files with 79 additions and 13 deletions

View File

@@ -42,7 +42,10 @@
{
"language": "typescript",
"scopeName": "source.ts",
"path": "./syntaxes/TypeScript.tmLanguage.json"
"path": "./syntaxes/TypeScript.tmLanguage.json",
"tokenTypes": {
"entity.name.type.instance.jsdoc": "other"
}
},
{
"language": "typescriptreact",
@@ -53,6 +56,9 @@
"meta.tag.without-attributes.tsx": "jsx-tags",
"meta.tag.attributes.tsx": "typescriptreact",
"meta.embedded.expression.tsx": "typescriptreact"
},
"tokenTypes": {
"entity.name.type.instance.jsdoc": "other"
}
}
],