Skip to content

Commit 715de88

Browse files
authored
Remove deprecated experimental welcome experience support (microsoft#262188)
1 parent f16a8ea commit 715de88

File tree

4 files changed

+11
-1031
lines changed

4 files changed

+11
-1031
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -242,27 +242,6 @@ registerAction2(class extends Action2 {
242242
}
243243
});
244244

245-
246-
registerAction2(class extends Action2 {
247-
constructor() {
248-
super({
249-
id: 'welcome.showNewWelcome',
250-
title: localize2('welcome.showNewWelcome', 'Open New Welcome Experience'),
251-
f1: true,
252-
});
253-
}
254-
255-
async run(accessor: ServicesAccessor) {
256-
const editorService = accessor.get(IEditorService);
257-
const options: GettingStartedEditorOptions = { selectedCategory: 'NewWelcomeExperience', forceReload: true, showTelemetryNotice: true };
258-
259-
editorService.openEditor({
260-
resource: GettingStartedInput.RESOURCE,
261-
options
262-
});
263-
}
264-
});
265-
266245
CommandsRegistry.registerCommand({
267246
id: 'welcome.newWorkspaceChat',
268247
handler: (accessor, stepID: string) => {

0 commit comments

Comments
 (0)