ATL-222: Moved the language feature to a VS Code extension.

Updated to next Theia: 1.6.0-next.b43a1623.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2020-09-08 13:15:55 +02:00
committed by Akos Kitta
parent fbebfc7cca
commit f26dae185b
30 changed files with 1368 additions and 3575 deletions

View File

@@ -74,7 +74,7 @@ export class WorkspaceService extends TheiaWorkspaceService {
}
private async isValid(uri: string): Promise<boolean> {
const exists = await this.fileSystem.exists(uri);
const exists = await this.fileService.exists(new URI(uri));
if (!exists) {
return false;
}
@@ -104,8 +104,7 @@ export class WorkspaceService extends TheiaWorkspaceService {
protected get workspaceTitle(): string | undefined {
if (this.workspace) {
const uri = new URI(this.workspace.uri);
return this.labelProvider.getName(uri);
return this.labelProvider.getName(this.workspace.resource);
}
}