chore(vscode): update to 1.56.0

This commit is contained in:
Akash Satheesan
2021-04-30 20:25:17 +05:30
1749 changed files with 88014 additions and 43316 deletions

View File

@@ -78,7 +78,7 @@ abstract class BaseOpenRecentAction extends Action {
protected abstract isQuickNavigate(): boolean;
async run(): Promise<void> {
override async run(): Promise<void> {
const recentlyOpened = await this.workspacesService.getRecentlyOpened();
const dirtyWorkspacesAndFolders = await this.workspacesService.getDirtyWorkspaces();
@@ -286,7 +286,7 @@ class ToggleFullScreenAction extends Action {
super(id, label);
}
run(): Promise<void> {
override run(): Promise<void> {
return this.hostService.toggleFullScreen();
}
}
@@ -304,10 +304,8 @@ export class ReloadWindowAction extends Action {
super(id, label);
}
async run(): Promise<boolean> {
override async run(): Promise<void> {
await this.hostService.reload();
return true;
}
}
@@ -324,7 +322,7 @@ class ShowAboutDialogAction extends Action {
super(id, label);
}
run(): Promise<void> {
override run(): Promise<void> {
return this.dialogService.about();
}
}
@@ -342,7 +340,7 @@ export class NewWindowAction extends Action {
super(id, label);
}
run(): Promise<void> {
override run(): Promise<void> {
return this.hostService.openWindow({ remoteAuthority: null });
}
}