提交 452a377c 编写于 作者: M Matt Bierner

Still search all projects if you are using TS 3.9 but are not in a TS file

上级 e3c3ea27
......@@ -45,12 +45,12 @@ class TypeScriptWorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvide
file = undefined;
} else {
const document = this.getDocument();
if (!document) {
if (!document && this.client.apiVersion.lt(API.v390)) {
return [];
}
file = await this.toOpenedFiledPath(document);
if (!file) {
if (!file && this.client.apiVersion.lt(API.v390)) {
return [];
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册