Skip to content

Commit 1a3ff79

Browse files
authored
Add descriptions to getting-started commands (microsoft#209878)
Add cmd descriptions to getting-started commands
1 parent fa4588b commit 1a3ff79

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ registerAction2(class extends Action2 {
4444
id: MenuId.MenubarHelpMenu,
4545
group: '1_welcome',
4646
order: 1,
47+
},
48+
metadata: {
49+
description: localize2('minWelcomeDescription', 'Opens a Walkthrough to help you get started in VS Code.')
4750
}
4851
});
4952
}

src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,10 @@ registerAction2(class extends Action2 {
674674
id: 'resetGettingStartedProgress',
675675
category: localize2('developer', "Developer"),
676676
title: localize2('resetWelcomePageWalkthroughProgress', "Reset Welcome Page Walkthrough Progress"),
677-
f1: true
677+
f1: true,
678+
metadata: {
679+
description: localize2('resetGettingStartedProgressDescription', 'Reset the progress of all Walkthrough steps on the Welcome Page to make them appear as if they are being viewed for the first time, providing a fresh start to the getting started experience.'),
680+
}
678681
});
679682
}
680683

0 commit comments

Comments
 (0)