@codingame/monaco-vscode-walkthrough-service-override 11.1.2 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/multi-file-edits.svg +513 -0
- package/index.d.ts +2 -1
- package/index.js +19 -1
- package/package.json +24 -8
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +67 -66
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +146 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +153 -150
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +84 -32
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +8 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer.js +3 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +41 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +3 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +3 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedList.d.ts +42 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedList.js +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +10 -8
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.d.ts +147 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +86 -83
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.d.ts +49 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +43 -38
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts +66 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +208 -165
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/all.svg.js +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +4 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +7 -6
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +7 -6
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.js +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/media/walkThroughPart.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +6 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.js +11 -8
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +6 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +66 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +34 -31
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.d.ts +29 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +5 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +3 -2
- package/walkthrough.js +0 -18
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
import themePickerContent from './media/theme_picker.js';
|
|
2
3
|
import notebookProfileContent from './media/notebookProfile.js';
|
|
3
4
|
import { localize } from 'vscode/vscode/vs/nls';
|
|
@@ -5,10 +6,11 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
|
5
6
|
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
6
7
|
import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
|
|
7
8
|
import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from 'vscode/vscode/vs/platform/accessibility/common/accessibility';
|
|
9
|
+
import product from 'vscode/vscode/vs/platform/product/common/product';
|
|
8
10
|
|
|
9
11
|
class GettingStartedContentProviderRegistry {
|
|
10
12
|
constructor() {
|
|
11
|
-
this.providers = (
|
|
13
|
+
this.providers = ( new Map());
|
|
12
14
|
}
|
|
13
15
|
registerProvider(moduleId, provider) {
|
|
14
16
|
this.providers.set(moduleId, provider);
|
|
@@ -17,17 +19,17 @@ class GettingStartedContentProviderRegistry {
|
|
|
17
19
|
return this.providers.get(moduleId);
|
|
18
20
|
}
|
|
19
21
|
}
|
|
20
|
-
const gettingStartedContentRegistry = (
|
|
22
|
+
const gettingStartedContentRegistry = ( new GettingStartedContentProviderRegistry());
|
|
21
23
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker', themePickerContent);
|
|
22
24
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
23
25
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
24
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
25
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
26
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(10824, "Icon used for the setup category of welcome page")));
|
|
27
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(10825, "Icon used for the beginner category of welcome page")));
|
|
26
28
|
const startEntries = [
|
|
27
29
|
{
|
|
28
30
|
id: 'welcome.showNewFileEntries',
|
|
29
|
-
title: ( localize(
|
|
30
|
-
description: ( localize(
|
|
31
|
+
title: ( localize(10826, "New File...")),
|
|
32
|
+
description: ( localize(10827, "Open a new untitled text file, notebook, or custom editor.")),
|
|
31
33
|
icon: Codicon.newFile,
|
|
32
34
|
content: {
|
|
33
35
|
type: 'startEntry',
|
|
@@ -36,8 +38,8 @@ const startEntries = [
|
|
|
36
38
|
},
|
|
37
39
|
{
|
|
38
40
|
id: 'topLevelOpenMac',
|
|
39
|
-
title: ( localize(
|
|
40
|
-
description: ( localize(
|
|
41
|
+
title: ( localize(10828, "Open...")),
|
|
42
|
+
description: ( localize(10829, "Open a file or folder to start working")),
|
|
41
43
|
icon: Codicon.folderOpened,
|
|
42
44
|
when: '!isWeb && isMac',
|
|
43
45
|
content: {
|
|
@@ -47,8 +49,8 @@ const startEntries = [
|
|
|
47
49
|
},
|
|
48
50
|
{
|
|
49
51
|
id: 'topLevelOpenFile',
|
|
50
|
-
title: ( localize(
|
|
51
|
-
description: ( localize(
|
|
52
|
+
title: ( localize(10830, "Open File...")),
|
|
53
|
+
description: ( localize(10831, "Open a file to start working")),
|
|
52
54
|
icon: Codicon.goToFile,
|
|
53
55
|
when: 'isWeb || !isMac',
|
|
54
56
|
content: {
|
|
@@ -58,8 +60,8 @@ const startEntries = [
|
|
|
58
60
|
},
|
|
59
61
|
{
|
|
60
62
|
id: 'topLevelOpenFolder',
|
|
61
|
-
title: ( localize(
|
|
62
|
-
description: ( localize(
|
|
63
|
+
title: ( localize(10832, "Open Folder...")),
|
|
64
|
+
description: ( localize(10833, "Open a folder to start working")),
|
|
63
65
|
icon: Codicon.folderOpened,
|
|
64
66
|
when: '!isWeb && !isMac',
|
|
65
67
|
content: {
|
|
@@ -69,8 +71,8 @@ const startEntries = [
|
|
|
69
71
|
},
|
|
70
72
|
{
|
|
71
73
|
id: 'topLevelOpenFolderWeb',
|
|
72
|
-
title: ( localize(
|
|
73
|
-
description: ( localize(
|
|
74
|
+
title: ( localize(10832, "Open Folder...")),
|
|
75
|
+
description: ( localize(10833, "Open a folder to start working")),
|
|
74
76
|
icon: Codicon.folderOpened,
|
|
75
77
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
76
78
|
content: {
|
|
@@ -80,8 +82,8 @@ const startEntries = [
|
|
|
80
82
|
},
|
|
81
83
|
{
|
|
82
84
|
id: 'topLevelGitClone',
|
|
83
|
-
title: ( localize(
|
|
84
|
-
description: ( localize(
|
|
85
|
+
title: ( localize(10834, "Clone Git Repository...")),
|
|
86
|
+
description: ( localize(10835, "Clone a remote repository to a local folder")),
|
|
85
87
|
when: 'config.git.enabled && !git.missing',
|
|
86
88
|
icon: Codicon.sourceControl,
|
|
87
89
|
content: {
|
|
@@ -91,9 +93,9 @@ const startEntries = [
|
|
|
91
93
|
},
|
|
92
94
|
{
|
|
93
95
|
id: 'topLevelGitOpen',
|
|
94
|
-
title: ( localize(
|
|
96
|
+
title: ( localize(10836, "Open Repository...")),
|
|
95
97
|
description: ( localize(
|
|
96
|
-
|
|
98
|
+
10837,
|
|
97
99
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
98
100
|
)),
|
|
99
101
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -105,8 +107,8 @@ const startEntries = [
|
|
|
105
107
|
},
|
|
106
108
|
{
|
|
107
109
|
id: 'topLevelShowWalkthroughs',
|
|
108
|
-
title: ( localize(
|
|
109
|
-
description: ( localize(
|
|
110
|
+
title: ( localize(10838, "Open a Walkthrough...")),
|
|
111
|
+
description: ( localize(10839, "View a walkthrough on the editor or an extension")),
|
|
110
112
|
icon: Codicon.checklist,
|
|
111
113
|
when: 'allWalkthroughsHidden',
|
|
112
114
|
content: {
|
|
@@ -116,8 +118,8 @@ const startEntries = [
|
|
|
116
118
|
},
|
|
117
119
|
{
|
|
118
120
|
id: 'topLevelRemoteOpen',
|
|
119
|
-
title: ( localize(
|
|
120
|
-
description: ( localize(
|
|
121
|
+
title: ( localize(10840, "Connect to...")),
|
|
122
|
+
description: ( localize(10841, "Connect to remote development workspaces.")),
|
|
121
123
|
when: '!isWeb',
|
|
122
124
|
icon: Codicon.remote,
|
|
123
125
|
content: {
|
|
@@ -127,8 +129,8 @@ const startEntries = [
|
|
|
127
129
|
},
|
|
128
130
|
{
|
|
129
131
|
id: 'topLevelOpenTunnel',
|
|
130
|
-
title: ( localize(
|
|
131
|
-
description: ( localize(
|
|
132
|
+
title: ( localize(10842, "Open Tunnel...")),
|
|
133
|
+
description: ( localize(10843, "Connect to a remote machine through a Tunnel")),
|
|
132
134
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
133
135
|
icon: Codicon.remote,
|
|
134
136
|
content: {
|
|
@@ -138,26 +140,52 @@ const startEntries = [
|
|
|
138
140
|
},
|
|
139
141
|
];
|
|
140
142
|
const Button = (title, href) => `[${title}](${href})`;
|
|
143
|
+
const CopilotStepTitle = ( localize(10844, "Use AI features with Copilot for free"));
|
|
144
|
+
const CopilotDescription = ( localize(
|
|
145
|
+
10845,
|
|
146
|
+
"You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code and much more using natural language.",
|
|
147
|
+
product.defaultChatAgent?.documentationUrl ?? ''
|
|
148
|
+
));
|
|
149
|
+
const CopilotSignedOutButton = Button(( localize(10846, "Set Up Copilot for Free")), `command:workbench.action.chat.triggerSetup`);
|
|
150
|
+
const CopilotSignedInButton = Button(( localize(10847, "Set Up Copilot for Free")), `command:workbench.action.chat.triggerSetup`);
|
|
151
|
+
const CopilotCompleteButton = Button(( localize(10848, "Chat with Copilot")), 'command:workbench.action.chat.open');
|
|
152
|
+
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
153
|
+
const description = includeTerms ?
|
|
154
|
+
`${CopilotDescription}\n\n${button}` :
|
|
155
|
+
`${CopilotDescription}\n${button}`;
|
|
156
|
+
return {
|
|
157
|
+
id,
|
|
158
|
+
title: CopilotStepTitle,
|
|
159
|
+
description,
|
|
160
|
+
when,
|
|
161
|
+
media: {
|
|
162
|
+
type: 'svg', altText: 'VS Code Copilot multi file edits', path: 'multi-file-edits.svg'
|
|
163
|
+
},
|
|
164
|
+
};
|
|
165
|
+
}
|
|
141
166
|
const walkthroughs = [
|
|
142
167
|
{
|
|
143
168
|
id: 'Setup',
|
|
144
|
-
title: ( localize(
|
|
145
|
-
description: ( localize(
|
|
169
|
+
title: ( localize(10849, "Get Started with VS Code")),
|
|
170
|
+
description: ( localize(10850, "Customize your editor, learn the basics, and start coding")),
|
|
146
171
|
isFeatured: true,
|
|
147
172
|
icon: setupIcon,
|
|
148
173
|
when: '!isWeb',
|
|
149
|
-
walkthroughPageTitle: ( localize(
|
|
174
|
+
walkthroughPageTitle: ( localize(10851, 'Setup VS Code')),
|
|
150
175
|
next: 'Beginner',
|
|
151
176
|
content: {
|
|
152
177
|
type: 'steps',
|
|
153
178
|
steps: [
|
|
179
|
+
createCopilotSetupStep('CopilotSetupSignedOut', CopilotSignedOutButton, 'config.chat.experimental.offerSetup && chatSetupSignedOut', true),
|
|
180
|
+
createCopilotSetupStep('CopilotSetupComplete', CopilotCompleteButton, 'config.chat.experimental.offerSetup && chatSetupInstalled && (chatSetupEntitled || chatSetupLimited)', false),
|
|
181
|
+
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, 'config.chat.experimental.offerSetup && !chatSetupSignedOut && (!chatSetupInstalled || chatSetupCanSignUp)', true),
|
|
154
182
|
{
|
|
155
183
|
id: 'pickColorTheme',
|
|
156
|
-
title: ( localize(
|
|
184
|
+
title: ( localize(10852, "Choose your theme")),
|
|
157
185
|
description: ( localize(
|
|
158
|
-
|
|
186
|
+
10853,
|
|
159
187
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
160
|
-
Button(( localize(
|
|
188
|
+
Button(( localize(10854, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
161
189
|
)),
|
|
162
190
|
completionEvents: [
|
|
163
191
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -167,11 +195,11 @@ const walkthroughs = [
|
|
|
167
195
|
},
|
|
168
196
|
{
|
|
169
197
|
id: 'extensionsWeb',
|
|
170
|
-
title: ( localize(
|
|
198
|
+
title: ( localize(10855, "Code with extensions")),
|
|
171
199
|
description: ( localize(
|
|
172
|
-
|
|
200
|
+
10856,
|
|
173
201
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
174
|
-
Button(( localize(
|
|
202
|
+
Button(( localize(10857, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
175
203
|
)),
|
|
176
204
|
when: 'workspacePlatform == \'webworker\'',
|
|
177
205
|
media: {
|
|
@@ -180,11 +208,11 @@ const walkthroughs = [
|
|
|
180
208
|
},
|
|
181
209
|
{
|
|
182
210
|
id: 'findLanguageExtensions',
|
|
183
|
-
title: ( localize(
|
|
211
|
+
title: ( localize(10858, "Rich support for all your languages")),
|
|
184
212
|
description: ( localize(
|
|
185
|
-
|
|
213
|
+
10859,
|
|
186
214
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
187
|
-
Button(( localize(
|
|
215
|
+
Button(( localize(10860, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
188
216
|
)),
|
|
189
217
|
when: 'workspacePlatform != \'webworker\'',
|
|
190
218
|
media: {
|
|
@@ -193,73 +221,88 @@ const walkthroughs = [
|
|
|
193
221
|
},
|
|
194
222
|
{
|
|
195
223
|
id: 'settings',
|
|
196
|
-
title: ( localize(
|
|
224
|
+
title: ( localize(10861, "Tune your settings")),
|
|
197
225
|
description: ( localize(
|
|
198
|
-
|
|
226
|
+
10862,
|
|
199
227
|
"Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
|
|
200
|
-
Button(( localize(
|
|
228
|
+
Button(( localize(10863, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
201
229
|
)),
|
|
230
|
+
when: '!config.chat.experimental.offerSetup',
|
|
202
231
|
media: {
|
|
203
232
|
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
204
233
|
},
|
|
205
234
|
},
|
|
206
235
|
{
|
|
207
236
|
id: 'settingsSync',
|
|
208
|
-
title: ( localize(
|
|
237
|
+
title: ( localize(10864, "Sync settings across devices")),
|
|
209
238
|
description: ( localize(
|
|
210
|
-
|
|
239
|
+
10865,
|
|
211
240
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
212
|
-
Button(( localize(
|
|
241
|
+
Button(( localize(10866, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
213
242
|
)),
|
|
214
|
-
when: 'syncStatus != uninitialized',
|
|
243
|
+
when: '!config.chat.experimental.offerSetup && syncStatus != uninitialized',
|
|
215
244
|
completionEvents: ['onEvent:sync-enabled'],
|
|
216
245
|
media: {
|
|
217
246
|
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
|
|
218
247
|
},
|
|
219
248
|
},
|
|
249
|
+
{
|
|
250
|
+
id: 'settingsAndSync',
|
|
251
|
+
title: ( localize(10861, "Tune your settings")),
|
|
252
|
+
description: ( localize(
|
|
253
|
+
10867,
|
|
254
|
+
"Customize every aspect of VS Code and your extensions to your liking. [Back up and sync](command:workbench.userDataSync.actions.turnOn) your essential customizations across all your devices.\n{0}",
|
|
255
|
+
Button(( localize(10863, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
256
|
+
)),
|
|
257
|
+
when: 'config.chat.experimental.offerSetup && syncStatus != uninitialized',
|
|
258
|
+
completionEvents: ['onEvent:sync-enabled'],
|
|
259
|
+
media: {
|
|
260
|
+
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
261
|
+
},
|
|
262
|
+
},
|
|
220
263
|
{
|
|
221
264
|
id: 'commandPaletteTask',
|
|
222
|
-
title: ( localize(
|
|
265
|
+
title: ( localize(10868, "Unlock productivity with the Command Palette ")),
|
|
223
266
|
description: ( localize(
|
|
224
|
-
|
|
267
|
+
10869,
|
|
225
268
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
226
|
-
Button(( localize(
|
|
269
|
+
Button(( localize(10870, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
227
270
|
)),
|
|
228
271
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
229
272
|
},
|
|
230
273
|
{
|
|
231
274
|
id: 'pickAFolderTask-Mac',
|
|
232
|
-
title: ( localize(
|
|
275
|
+
title: ( localize(10871, "Open up your code")),
|
|
233
276
|
description: ( localize(
|
|
234
|
-
|
|
277
|
+
10872,
|
|
235
278
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
236
|
-
Button(( localize(
|
|
279
|
+
Button(( localize(10873, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
|
|
237
280
|
)),
|
|
238
|
-
when: 'isMac && workspaceFolderCount == 0',
|
|
281
|
+
when: '!config.chat.experimental.offerSetup && isMac && workspaceFolderCount == 0',
|
|
239
282
|
media: {
|
|
240
283
|
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
|
|
241
284
|
}
|
|
242
285
|
},
|
|
243
286
|
{
|
|
244
287
|
id: 'pickAFolderTask-Other',
|
|
245
|
-
title: ( localize(
|
|
288
|
+
title: ( localize(10871, "Open up your code")),
|
|
246
289
|
description: ( localize(
|
|
247
|
-
|
|
290
|
+
10872,
|
|
248
291
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
249
|
-
Button(( localize(
|
|
292
|
+
Button(( localize(10873, "Pick a Folder")), 'command:workbench.action.files.openFolder')
|
|
250
293
|
)),
|
|
251
|
-
when: '!isMac && workspaceFolderCount == 0',
|
|
294
|
+
when: '!config.chat.experimental.offerSetup && !isMac && workspaceFolderCount == 0',
|
|
252
295
|
media: {
|
|
253
296
|
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
|
|
254
297
|
}
|
|
255
298
|
},
|
|
256
299
|
{
|
|
257
300
|
id: 'quickOpen',
|
|
258
|
-
title: ( localize(
|
|
301
|
+
title: ( localize(10874, "Quickly navigate between your files")),
|
|
259
302
|
description: ( localize(
|
|
260
|
-
|
|
303
|
+
10875,
|
|
261
304
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
262
|
-
Button(( localize(
|
|
305
|
+
Button(( localize(10876, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
263
306
|
)),
|
|
264
307
|
when: 'workspaceFolderCount != 0',
|
|
265
308
|
media: {
|
|
@@ -268,11 +311,11 @@ const walkthroughs = [
|
|
|
268
311
|
},
|
|
269
312
|
{
|
|
270
313
|
id: 'videoTutorial',
|
|
271
|
-
title: ( localize(
|
|
314
|
+
title: ( localize(10877, "Watch video tutorials")),
|
|
272
315
|
description: ( localize(
|
|
273
|
-
|
|
316
|
+
10878,
|
|
274
317
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
275
|
-
Button(( localize(
|
|
318
|
+
Button(( localize(10879, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
276
319
|
)),
|
|
277
320
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
278
321
|
}
|
|
@@ -281,23 +324,23 @@ const walkthroughs = [
|
|
|
281
324
|
},
|
|
282
325
|
{
|
|
283
326
|
id: 'SetupWeb',
|
|
284
|
-
title: ( localize(
|
|
285
|
-
description: ( localize(
|
|
327
|
+
title: ( localize(10880, "Get Started with VS Code for the Web")),
|
|
328
|
+
description: ( localize(10881, "Customize your editor, learn the basics, and start coding")),
|
|
286
329
|
isFeatured: true,
|
|
287
330
|
icon: setupIcon,
|
|
288
331
|
when: 'isWeb',
|
|
289
332
|
next: 'Beginner',
|
|
290
|
-
walkthroughPageTitle: ( localize(
|
|
333
|
+
walkthroughPageTitle: ( localize(10882, 'Setup VS Code Web')),
|
|
291
334
|
content: {
|
|
292
335
|
type: 'steps',
|
|
293
336
|
steps: [
|
|
294
337
|
{
|
|
295
338
|
id: 'pickColorThemeWeb',
|
|
296
|
-
title: ( localize(
|
|
339
|
+
title: ( localize(10852, "Choose your theme")),
|
|
297
340
|
description: ( localize(
|
|
298
|
-
|
|
341
|
+
10853,
|
|
299
342
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
300
|
-
Button(( localize(
|
|
343
|
+
Button(( localize(10854, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
301
344
|
)),
|
|
302
345
|
completionEvents: [
|
|
303
346
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -307,11 +350,11 @@ const walkthroughs = [
|
|
|
307
350
|
},
|
|
308
351
|
{
|
|
309
352
|
id: 'menuBarWeb',
|
|
310
|
-
title: ( localize(
|
|
353
|
+
title: ( localize(10883, "Just the right amount of UI")),
|
|
311
354
|
description: ( localize(
|
|
312
|
-
|
|
355
|
+
10884,
|
|
313
356
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
314
|
-
Button(( localize(
|
|
357
|
+
Button(( localize(10885, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
315
358
|
)),
|
|
316
359
|
when: 'isWeb',
|
|
317
360
|
media: {
|
|
@@ -320,11 +363,11 @@ const walkthroughs = [
|
|
|
320
363
|
},
|
|
321
364
|
{
|
|
322
365
|
id: 'extensionsWebWeb',
|
|
323
|
-
title: ( localize(
|
|
366
|
+
title: ( localize(10855, "Code with extensions")),
|
|
324
367
|
description: ( localize(
|
|
325
|
-
|
|
368
|
+
10856,
|
|
326
369
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
327
|
-
Button(( localize(
|
|
370
|
+
Button(( localize(10857, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
328
371
|
)),
|
|
329
372
|
when: 'workspacePlatform == \'webworker\'',
|
|
330
373
|
media: {
|
|
@@ -333,11 +376,11 @@ const walkthroughs = [
|
|
|
333
376
|
},
|
|
334
377
|
{
|
|
335
378
|
id: 'findLanguageExtensionsWeb',
|
|
336
|
-
title: ( localize(
|
|
379
|
+
title: ( localize(10858, "Rich support for all your languages")),
|
|
337
380
|
description: ( localize(
|
|
338
|
-
|
|
381
|
+
10859,
|
|
339
382
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
340
|
-
Button(( localize(
|
|
383
|
+
Button(( localize(10860, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
341
384
|
)),
|
|
342
385
|
when: 'workspacePlatform != \'webworker\'',
|
|
343
386
|
media: {
|
|
@@ -346,11 +389,11 @@ const walkthroughs = [
|
|
|
346
389
|
},
|
|
347
390
|
{
|
|
348
391
|
id: 'settingsSyncWeb',
|
|
349
|
-
title: ( localize(
|
|
392
|
+
title: ( localize(10864, "Sync settings across devices")),
|
|
350
393
|
description: ( localize(
|
|
351
|
-
|
|
394
|
+
10865,
|
|
352
395
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
353
|
-
Button(( localize(
|
|
396
|
+
Button(( localize(10866, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
354
397
|
)),
|
|
355
398
|
when: 'syncStatus != uninitialized',
|
|
356
399
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -360,22 +403,22 @@ const walkthroughs = [
|
|
|
360
403
|
},
|
|
361
404
|
{
|
|
362
405
|
id: 'commandPaletteTaskWeb',
|
|
363
|
-
title: ( localize(
|
|
406
|
+
title: ( localize(10868, "Unlock productivity with the Command Palette ")),
|
|
364
407
|
description: ( localize(
|
|
365
|
-
|
|
408
|
+
10869,
|
|
366
409
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
367
|
-
Button(( localize(
|
|
410
|
+
Button(( localize(10870, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
368
411
|
)),
|
|
369
412
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
370
413
|
},
|
|
371
414
|
{
|
|
372
415
|
id: 'pickAFolderTask-WebWeb',
|
|
373
|
-
title: ( localize(
|
|
416
|
+
title: ( localize(10871, "Open up your code")),
|
|
374
417
|
description: ( localize(
|
|
375
|
-
|
|
418
|
+
10886,
|
|
376
419
|
"You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}",
|
|
377
|
-
Button(( localize(
|
|
378
|
-
Button(( localize(
|
|
420
|
+
Button(( localize(10887, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
421
|
+
Button(( localize(10888, "Open Repository")), 'command:remoteHub.openRepository')
|
|
379
422
|
)),
|
|
380
423
|
when: 'workspaceFolderCount == 0',
|
|
381
424
|
media: {
|
|
@@ -384,11 +427,11 @@ const walkthroughs = [
|
|
|
384
427
|
},
|
|
385
428
|
{
|
|
386
429
|
id: 'quickOpenWeb',
|
|
387
|
-
title: ( localize(
|
|
430
|
+
title: ( localize(10874, "Quickly navigate between your files")),
|
|
388
431
|
description: ( localize(
|
|
389
|
-
|
|
432
|
+
10875,
|
|
390
433
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
391
|
-
Button(( localize(
|
|
434
|
+
Button(( localize(10876, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
392
435
|
)),
|
|
393
436
|
when: 'workspaceFolderCount != 0',
|
|
394
437
|
media: {
|
|
@@ -400,26 +443,26 @@ const walkthroughs = [
|
|
|
400
443
|
},
|
|
401
444
|
{
|
|
402
445
|
id: 'SetupAccessibility',
|
|
403
|
-
title: ( localize(
|
|
446
|
+
title: ( localize(10889, "Get Started with Accessibility Features")),
|
|
404
447
|
description: ( localize(
|
|
405
|
-
|
|
448
|
+
10890,
|
|
406
449
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
407
450
|
)),
|
|
408
451
|
isFeatured: true,
|
|
409
452
|
icon: setupIcon,
|
|
410
453
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
411
454
|
next: 'Setup',
|
|
412
|
-
walkthroughPageTitle: ( localize(
|
|
455
|
+
walkthroughPageTitle: ( localize(10891, 'Setup VS Code Accessibility')),
|
|
413
456
|
content: {
|
|
414
457
|
type: 'steps',
|
|
415
458
|
steps: [
|
|
416
459
|
{
|
|
417
460
|
id: 'accessibilityHelp',
|
|
418
|
-
title: ( localize(
|
|
461
|
+
title: ( localize(10892, "Use the accessibility help dialog to learn about features")),
|
|
419
462
|
description: ( localize(
|
|
420
|
-
|
|
463
|
+
10893,
|
|
421
464
|
"The accessibility help dialog provides information about what to expect from a feature and the commands/keybindings to operate them.\n With focus in an editor, terminal, notebook, chat response, comment, or debug console, the relevant dialog can be opened with the Open Accessibility Help command.\n{0}",
|
|
422
|
-
Button(( localize(
|
|
465
|
+
Button(( localize(10894, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
423
466
|
)),
|
|
424
467
|
media: {
|
|
425
468
|
type: 'markdown', path: 'empty'
|
|
@@ -428,13 +471,13 @@ const walkthroughs = [
|
|
|
428
471
|
{
|
|
429
472
|
id: 'accessibleView',
|
|
430
473
|
title: ( localize(
|
|
431
|
-
|
|
474
|
+
10895,
|
|
432
475
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
433
476
|
)),
|
|
434
477
|
description: ( localize(
|
|
435
|
-
|
|
478
|
+
10896,
|
|
436
479
|
"The accessible view is available for the terminal, hovers, notifications, comments, notebook output, chat responses, inline completions, and debug console output.\n With focus in any of those features, it can be opened with the Open Accessible View command.\n{0}",
|
|
437
|
-
Button(( localize(
|
|
480
|
+
Button(( localize(10897, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
438
481
|
)),
|
|
439
482
|
media: {
|
|
440
483
|
type: 'markdown', path: 'empty'
|
|
@@ -442,11 +485,11 @@ const walkthroughs = [
|
|
|
442
485
|
},
|
|
443
486
|
{
|
|
444
487
|
id: 'verbositySettings',
|
|
445
|
-
title: ( localize(
|
|
488
|
+
title: ( localize(10898, "Control the verbosity of aria labels")),
|
|
446
489
|
description: ( localize(
|
|
447
|
-
|
|
490
|
+
10899,
|
|
448
491
|
"Screen reader verbosity settings exist for features around the workbench so that once a user is familiar with a feature, they can avoid hearing hints about how to operate it. For example, features for which an accessibility help dialog exists will indicate how to open the dialog until the verbosity setting for that feature has been disabled.\n These and other accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
449
|
-
Button(( localize(
|
|
492
|
+
Button(( localize(10900, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
450
493
|
)),
|
|
451
494
|
media: {
|
|
452
495
|
type: 'markdown', path: 'empty'
|
|
@@ -454,21 +497,21 @@ const walkthroughs = [
|
|
|
454
497
|
},
|
|
455
498
|
{
|
|
456
499
|
id: 'commandPaletteTaskAccessibility',
|
|
457
|
-
title: ( localize(
|
|
500
|
+
title: ( localize(10901, "Unlock productivity with the Command Palette ")),
|
|
458
501
|
description: ( localize(
|
|
459
|
-
|
|
502
|
+
10902,
|
|
460
503
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
461
|
-
Button(( localize(
|
|
504
|
+
Button(( localize(10870, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
462
505
|
)),
|
|
463
506
|
media: { type: 'markdown', path: 'empty' },
|
|
464
507
|
},
|
|
465
508
|
{
|
|
466
509
|
id: 'keybindingsAccessibility',
|
|
467
|
-
title: ( localize(
|
|
510
|
+
title: ( localize(10903, "Customize your keyboard shortcuts")),
|
|
468
511
|
description: ( localize(
|
|
469
|
-
|
|
512
|
+
10904,
|
|
470
513
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
471
|
-
Button(( localize(
|
|
514
|
+
Button(( localize(10905, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
472
515
|
)),
|
|
473
516
|
media: {
|
|
474
517
|
type: 'markdown', path: 'empty',
|
|
@@ -477,14 +520,14 @@ const walkthroughs = [
|
|
|
477
520
|
{
|
|
478
521
|
id: 'accessibilitySignals',
|
|
479
522
|
title: ( localize(
|
|
480
|
-
|
|
523
|
+
10906,
|
|
481
524
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
482
525
|
)),
|
|
483
526
|
description: ( localize(
|
|
484
|
-
|
|
527
|
+
10907,
|
|
485
528
|
"Accessibility sounds and announcements are played around the workbench for different events.\n These can be discovered and configured using the List Signal Sounds and List Signal Announcements commands.\n{0}\n{1}",
|
|
486
|
-
Button(( localize(
|
|
487
|
-
Button(( localize(
|
|
529
|
+
Button(( localize(10908, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
530
|
+
Button(( localize(10909, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
488
531
|
)),
|
|
489
532
|
media: {
|
|
490
533
|
type: 'markdown', path: 'empty'
|
|
@@ -493,13 +536,13 @@ const walkthroughs = [
|
|
|
493
536
|
{
|
|
494
537
|
id: 'hover',
|
|
495
538
|
title: ( localize(
|
|
496
|
-
|
|
539
|
+
10910,
|
|
497
540
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
498
541
|
)),
|
|
499
542
|
description: ( localize(
|
|
500
|
-
|
|
543
|
+
10911,
|
|
501
544
|
"While focus is in the editor on a variable or symbol, a hover can be can be focused with the Show or Open Hover command.\n{0}",
|
|
502
|
-
Button(( localize(
|
|
545
|
+
Button(( localize(10912, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
503
546
|
)),
|
|
504
547
|
media: {
|
|
505
548
|
type: 'markdown', path: 'empty'
|
|
@@ -507,11 +550,11 @@ const walkthroughs = [
|
|
|
507
550
|
},
|
|
508
551
|
{
|
|
509
552
|
id: 'goToSymbol',
|
|
510
|
-
title: ( localize(
|
|
553
|
+
title: ( localize(10913, "Navigate to symbols in a file")),
|
|
511
554
|
description: ( localize(
|
|
512
|
-
|
|
555
|
+
10914,
|
|
513
556
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
514
|
-
Button(( localize(
|
|
557
|
+
Button(( localize(10915, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
515
558
|
)),
|
|
516
559
|
media: {
|
|
517
560
|
type: 'markdown', path: 'empty'
|
|
@@ -520,14 +563,14 @@ const walkthroughs = [
|
|
|
520
563
|
{
|
|
521
564
|
id: 'codeFolding',
|
|
522
565
|
title: ( localize(
|
|
523
|
-
|
|
566
|
+
10916,
|
|
524
567
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
525
568
|
)),
|
|
526
569
|
description: ( localize(
|
|
527
|
-
|
|
570
|
+
10917,
|
|
528
571
|
"Fold or unfold a code section with the Toggle Fold command.\n{0}\n Fold or unfold recursively with the Toggle Fold Recursively Command\n{1}\n",
|
|
529
|
-
Button(( localize(
|
|
530
|
-
Button(( localize(
|
|
572
|
+
Button(( localize(10918, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
573
|
+
Button(( localize(10919, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
531
574
|
)),
|
|
532
575
|
media: {
|
|
533
576
|
type: 'markdown', path: 'empty'
|
|
@@ -535,12 +578,12 @@ const walkthroughs = [
|
|
|
535
578
|
},
|
|
536
579
|
{
|
|
537
580
|
id: 'intellisense',
|
|
538
|
-
title: ( localize(
|
|
581
|
+
title: ( localize(10920, "Use Intellisense to improve coding efficiency")),
|
|
539
582
|
description: ( localize(
|
|
540
|
-
|
|
583
|
+
10921,
|
|
541
584
|
"Intellisense suggestions can be opened with the Trigger Intellisense command.\n{0}\n Inline intellisense suggestions can be triggered with Trigger Inline Suggestion\n{1}\n Useful settings include editor.inlineCompletionsAccessibilityVerbose and editor.screenReaderAnnounceInlineSuggestion.",
|
|
542
|
-
Button(( localize(
|
|
543
|
-
Button(( localize(
|
|
585
|
+
Button(( localize(10922, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
586
|
+
Button(( localize(10923, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
544
587
|
)),
|
|
545
588
|
media: {
|
|
546
589
|
type: 'markdown', path: 'empty'
|
|
@@ -548,11 +591,11 @@ const walkthroughs = [
|
|
|
548
591
|
},
|
|
549
592
|
{
|
|
550
593
|
id: 'accessibilitySettings',
|
|
551
|
-
title: ( localize(
|
|
594
|
+
title: ( localize(10924, "Configure accessibility settings")),
|
|
552
595
|
description: ( localize(
|
|
553
|
-
|
|
596
|
+
10925,
|
|
554
597
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
598
|
+
Button(( localize(10926, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
556
599
|
)),
|
|
557
600
|
media: { type: 'markdown', path: 'empty' }
|
|
558
601
|
}
|
|
@@ -562,20 +605,20 @@ const walkthroughs = [
|
|
|
562
605
|
{
|
|
563
606
|
id: 'Beginner',
|
|
564
607
|
isFeatured: false,
|
|
565
|
-
title: ( localize(
|
|
608
|
+
title: ( localize(10927, "Learn the Fundamentals")),
|
|
566
609
|
icon: beginnerIcon,
|
|
567
|
-
description: ( localize(
|
|
568
|
-
walkthroughPageTitle: ( localize(
|
|
610
|
+
description: ( localize(10928, "Get an overview of the most essential features")),
|
|
611
|
+
walkthroughPageTitle: ( localize(10929, 'Essential Features')),
|
|
569
612
|
content: {
|
|
570
613
|
type: 'steps',
|
|
571
614
|
steps: [
|
|
572
615
|
{
|
|
573
616
|
id: 'extensions',
|
|
574
|
-
title: ( localize(
|
|
617
|
+
title: ( localize(10855, "Code with extensions")),
|
|
575
618
|
description: ( localize(
|
|
576
|
-
|
|
619
|
+
10930,
|
|
577
620
|
"Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}",
|
|
578
|
-
Button(( localize(
|
|
621
|
+
Button(( localize(10931, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
579
622
|
)),
|
|
580
623
|
when: 'workspacePlatform != \'webworker\'',
|
|
581
624
|
media: {
|
|
@@ -584,11 +627,11 @@ const walkthroughs = [
|
|
|
584
627
|
},
|
|
585
628
|
{
|
|
586
629
|
id: 'terminal',
|
|
587
|
-
title: ( localize(
|
|
630
|
+
title: ( localize(10932, "Built-in terminal")),
|
|
588
631
|
description: ( localize(
|
|
589
|
-
|
|
632
|
+
10933,
|
|
590
633
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
591
|
-
Button(( localize(
|
|
634
|
+
Button(( localize(10934, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
592
635
|
)),
|
|
593
636
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
594
637
|
media: {
|
|
@@ -597,11 +640,11 @@ const walkthroughs = [
|
|
|
597
640
|
},
|
|
598
641
|
{
|
|
599
642
|
id: 'debugging',
|
|
600
|
-
title: ( localize(
|
|
643
|
+
title: ( localize(10935, "Watch your code in action")),
|
|
601
644
|
description: ( localize(
|
|
602
|
-
|
|
645
|
+
10936,
|
|
603
646
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
604
|
-
Button(( localize(
|
|
647
|
+
Button(( localize(10937, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
605
648
|
)),
|
|
606
649
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
607
650
|
media: {
|
|
@@ -610,11 +653,11 @@ const walkthroughs = [
|
|
|
610
653
|
},
|
|
611
654
|
{
|
|
612
655
|
id: 'scmClone',
|
|
613
|
-
title: ( localize(
|
|
656
|
+
title: ( localize(10938, "Track your code with Git")),
|
|
614
657
|
description: ( localize(
|
|
615
|
-
|
|
658
|
+
10939,
|
|
616
659
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
617
|
-
Button(( localize(
|
|
660
|
+
Button(( localize(10940, "Clone Repository")), 'command:git.clone')
|
|
618
661
|
)),
|
|
619
662
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
620
663
|
media: {
|
|
@@ -623,11 +666,11 @@ const walkthroughs = [
|
|
|
623
666
|
},
|
|
624
667
|
{
|
|
625
668
|
id: 'scmSetup',
|
|
626
|
-
title: ( localize(
|
|
669
|
+
title: ( localize(10938, "Track your code with Git")),
|
|
627
670
|
description: ( localize(
|
|
628
|
-
|
|
671
|
+
10941,
|
|
629
672
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
630
|
-
Button(( localize(
|
|
673
|
+
Button(( localize(10942, "Initialize Git Repository")), 'command:git.init')
|
|
631
674
|
)),
|
|
632
675
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
633
676
|
media: {
|
|
@@ -636,11 +679,11 @@ const walkthroughs = [
|
|
|
636
679
|
},
|
|
637
680
|
{
|
|
638
681
|
id: 'scm',
|
|
639
|
-
title: ( localize(
|
|
682
|
+
title: ( localize(10938, "Track your code with Git")),
|
|
640
683
|
description: ( localize(
|
|
641
|
-
|
|
684
|
+
10943,
|
|
642
685
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
643
|
-
Button(( localize(
|
|
686
|
+
Button(( localize(10944, "Open Source Control")), 'command:workbench.view.scm')
|
|
644
687
|
)),
|
|
645
688
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
646
689
|
media: {
|
|
@@ -649,11 +692,11 @@ const walkthroughs = [
|
|
|
649
692
|
},
|
|
650
693
|
{
|
|
651
694
|
id: 'installGit',
|
|
652
|
-
title: ( localize(
|
|
695
|
+
title: ( localize(10945, "Install Git")),
|
|
653
696
|
description: ( localize(
|
|
654
|
-
|
|
697
|
+
10946,
|
|
655
698
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
656
|
-
Button(( localize(
|
|
699
|
+
Button(( localize(10947, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
657
700
|
'[',
|
|
658
701
|
'](command:workbench.action.reloadWindow)'
|
|
659
702
|
)),
|
|
@@ -667,12 +710,12 @@ const walkthroughs = [
|
|
|
667
710
|
},
|
|
668
711
|
{
|
|
669
712
|
id: 'tasks',
|
|
670
|
-
title: ( localize(
|
|
713
|
+
title: ( localize(10948, "Automate your project tasks")),
|
|
671
714
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
672
715
|
description: ( localize(
|
|
673
|
-
|
|
716
|
+
10949,
|
|
674
717
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
675
|
-
Button(( localize(
|
|
718
|
+
Button(( localize(10950, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
676
719
|
)),
|
|
677
720
|
media: {
|
|
678
721
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -680,11 +723,11 @@ const walkthroughs = [
|
|
|
680
723
|
},
|
|
681
724
|
{
|
|
682
725
|
id: 'shortcuts',
|
|
683
|
-
title: ( localize(
|
|
726
|
+
title: ( localize(10951, "Customize your shortcuts")),
|
|
684
727
|
description: ( localize(
|
|
685
|
-
|
|
728
|
+
10952,
|
|
686
729
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
687
|
-
Button(( localize(
|
|
730
|
+
Button(( localize(10905, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
688
731
|
)),
|
|
689
732
|
media: {
|
|
690
733
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -692,12 +735,12 @@ const walkthroughs = [
|
|
|
692
735
|
},
|
|
693
736
|
{
|
|
694
737
|
id: 'workspaceTrust',
|
|
695
|
-
title: ( localize(
|
|
738
|
+
title: ( localize(10953, "Safely browse and edit code")),
|
|
696
739
|
description: ( localize(
|
|
697
|
-
|
|
740
|
+
10954,
|
|
698
741
|
"{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.",
|
|
699
|
-
Button(( localize(
|
|
700
|
-
Button(( localize(
|
|
742
|
+
Button(( localize(10955, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
743
|
+
Button(( localize(10956, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
701
744
|
)),
|
|
702
745
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
703
746
|
media: {
|
|
@@ -709,20 +752,20 @@ const walkthroughs = [
|
|
|
709
752
|
},
|
|
710
753
|
{
|
|
711
754
|
id: 'notebooks',
|
|
712
|
-
title: ( localize(
|
|
755
|
+
title: ( localize(10957, "Customize Notebooks")),
|
|
713
756
|
description: '',
|
|
714
757
|
icon: setupIcon,
|
|
715
758
|
isFeatured: false,
|
|
716
759
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
717
|
-
walkthroughPageTitle: ( localize(
|
|
760
|
+
walkthroughPageTitle: ( localize(10958, 'Notebooks')),
|
|
718
761
|
content: {
|
|
719
762
|
type: 'steps',
|
|
720
763
|
steps: [
|
|
721
764
|
{
|
|
722
765
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
723
766
|
id: 'notebookProfile',
|
|
724
|
-
title: ( localize(
|
|
725
|
-
description: ( localize(
|
|
767
|
+
title: ( localize(10959, "Select the layout for your notebooks")),
|
|
768
|
+
description: ( localize(10960, "Get notebooks to feel just the way you prefer")),
|
|
726
769
|
when: 'userHasOpenedNotebook',
|
|
727
770
|
media: {
|
|
728
771
|
type: 'markdown', path: 'notebookProfile'
|