@codingame/monaco-vscode-walkthrough-service-override 21.3.1 → 21.3.3
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/package.json +10 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +36 -36
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +144 -144
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -27,13 +27,13 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
|
|
|
27
27
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
|
|
28
28
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
29
29
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
30
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
31
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
30
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12631, "Icon used for the setup category of welcome page")));
|
|
31
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12632, "Icon used for the beginner category of welcome page")));
|
|
32
32
|
const startEntries = [
|
|
33
33
|
{
|
|
34
34
|
id: 'welcome.showNewFileEntries',
|
|
35
|
-
title: ( localize(
|
|
36
|
-
description: ( localize(
|
|
35
|
+
title: ( localize(12633, "New File...")),
|
|
36
|
+
description: ( localize(12634, "Open a new untitled text file, notebook, or custom editor.")),
|
|
37
37
|
icon: Codicon.newFile,
|
|
38
38
|
content: {
|
|
39
39
|
type: 'startEntry',
|
|
@@ -42,8 +42,8 @@ const startEntries = [
|
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
id: 'topLevelOpenMac',
|
|
45
|
-
title: ( localize(
|
|
46
|
-
description: ( localize(
|
|
45
|
+
title: ( localize(12635, "Open...")),
|
|
46
|
+
description: ( localize(12636, "Open a file or folder to start working")),
|
|
47
47
|
icon: Codicon.folderOpened,
|
|
48
48
|
when: '!isWeb && isMac',
|
|
49
49
|
content: {
|
|
@@ -53,8 +53,8 @@ const startEntries = [
|
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
id: 'topLevelOpenFile',
|
|
56
|
-
title: ( localize(
|
|
57
|
-
description: ( localize(
|
|
56
|
+
title: ( localize(12637, "Open File...")),
|
|
57
|
+
description: ( localize(12638, "Open a file to start working")),
|
|
58
58
|
icon: Codicon.goToFile,
|
|
59
59
|
when: 'isWeb || !isMac',
|
|
60
60
|
content: {
|
|
@@ -64,8 +64,8 @@ const startEntries = [
|
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
id: 'topLevelOpenFolder',
|
|
67
|
-
title: ( localize(
|
|
68
|
-
description: ( localize(
|
|
67
|
+
title: ( localize(12639, "Open Folder...")),
|
|
68
|
+
description: ( localize(12640, "Open a folder to start working")),
|
|
69
69
|
icon: Codicon.folderOpened,
|
|
70
70
|
when: '!isWeb && !isMac',
|
|
71
71
|
content: {
|
|
@@ -75,8 +75,8 @@ const startEntries = [
|
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
id: 'topLevelOpenFolderWeb',
|
|
78
|
-
title: ( localize(
|
|
79
|
-
description: ( localize(
|
|
78
|
+
title: ( localize(12639, "Open Folder...")),
|
|
79
|
+
description: ( localize(12640, "Open a folder to start working")),
|
|
80
80
|
icon: Codicon.folderOpened,
|
|
81
81
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
82
82
|
content: {
|
|
@@ -86,8 +86,8 @@ const startEntries = [
|
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
id: 'topLevelGitClone',
|
|
89
|
-
title: ( localize(
|
|
90
|
-
description: ( localize(
|
|
89
|
+
title: ( localize(12641, "Clone Git Repository...")),
|
|
90
|
+
description: ( localize(12642, "Clone a remote repository to a local folder")),
|
|
91
91
|
when: 'config.git.enabled && !git.missing',
|
|
92
92
|
icon: Codicon.sourceControl,
|
|
93
93
|
content: {
|
|
@@ -97,9 +97,9 @@ const startEntries = [
|
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
id: 'topLevelGitOpen',
|
|
100
|
-
title: ( localize(
|
|
100
|
+
title: ( localize(12643, "Open Repository...")),
|
|
101
101
|
description: ( localize(
|
|
102
|
-
|
|
102
|
+
12644,
|
|
103
103
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
104
104
|
)),
|
|
105
105
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -111,8 +111,8 @@ const startEntries = [
|
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
id: 'topLevelRemoteOpen',
|
|
114
|
-
title: ( localize(
|
|
115
|
-
description: ( localize(
|
|
114
|
+
title: ( localize(12645, "Connect to...")),
|
|
115
|
+
description: ( localize(12646, "Connect to remote development workspaces.")),
|
|
116
116
|
when: '!isWeb',
|
|
117
117
|
icon: Codicon.remote,
|
|
118
118
|
content: {
|
|
@@ -122,8 +122,8 @@ const startEntries = [
|
|
|
122
122
|
},
|
|
123
123
|
{
|
|
124
124
|
id: 'topLevelOpenTunnel',
|
|
125
|
-
title: ( localize(
|
|
126
|
-
description: ( localize(
|
|
125
|
+
title: ( localize(12647, "Open Tunnel...")),
|
|
126
|
+
description: ( localize(12648, "Connect to a remote machine through a Tunnel")),
|
|
127
127
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
128
128
|
icon: Codicon.remote,
|
|
129
129
|
content: {
|
|
@@ -133,8 +133,8 @@ const startEntries = [
|
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
135
|
id: 'topLevelNewWorkspaceChat',
|
|
136
|
-
title: ( localize(
|
|
137
|
-
description: ( localize(
|
|
136
|
+
title: ( localize(12649, "Generate New Workspace...")),
|
|
137
|
+
description: ( localize(12650, "Chat to create a new workspace")),
|
|
138
138
|
icon: Codicon.chatSparkle,
|
|
139
139
|
when: '!isWeb && !chatSetupHidden',
|
|
140
140
|
content: {
|
|
@@ -144,15 +144,15 @@ const startEntries = [
|
|
|
144
144
|
},
|
|
145
145
|
];
|
|
146
146
|
const Button = (title, href) => `[${title}](${href})`;
|
|
147
|
-
const CopilotStepTitle = ( localize(
|
|
147
|
+
const CopilotStepTitle = ( localize(12651, "Use AI features with Copilot for free"));
|
|
148
148
|
const CopilotDescription = ( localize(
|
|
149
|
-
|
|
149
|
+
12652,
|
|
150
150
|
"You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code and much more using natural language.",
|
|
151
151
|
defaultChat.documentationUrl ?? ''
|
|
152
152
|
));
|
|
153
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
154
|
-
const CopilotSignedInButton = Button(( localize(
|
|
155
|
-
const CopilotCompleteButton = Button(( localize(
|
|
153
|
+
const CopilotSignedOutButton = Button(( localize(12653, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
154
|
+
const CopilotSignedInButton = Button(( localize(12654, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
155
|
+
const CopilotCompleteButton = Button(( localize(12655, "Chat with Copilot")), 'command:workbench.action.chat.open');
|
|
156
156
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
157
157
|
const description = includeTerms ?
|
|
158
158
|
`${CopilotDescription}\n\n${button}` :
|
|
@@ -170,12 +170,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
170
170
|
const walkthroughs = [
|
|
171
171
|
{
|
|
172
172
|
id: 'Setup',
|
|
173
|
-
title: ( localize(
|
|
174
|
-
description: ( localize(
|
|
173
|
+
title: ( localize(12656, "Get started with VS Code")),
|
|
174
|
+
description: ( localize(12657, "Customize your editor, learn the basics, and start coding")),
|
|
175
175
|
isFeatured: true,
|
|
176
176
|
icon: setupIcon,
|
|
177
177
|
when: '!isWeb',
|
|
178
|
-
walkthroughPageTitle: ( localize(
|
|
178
|
+
walkthroughPageTitle: ( localize(12658, 'Setup VS Code')),
|
|
179
179
|
next: 'Beginner',
|
|
180
180
|
content: {
|
|
181
181
|
type: 'steps',
|
|
@@ -185,11 +185,11 @@ const walkthroughs = [
|
|
|
185
185
|
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
|
|
186
186
|
{
|
|
187
187
|
id: 'pickColorTheme',
|
|
188
|
-
title: ( localize(
|
|
188
|
+
title: ( localize(12659, "Choose your theme")),
|
|
189
189
|
description: ( localize(
|
|
190
|
-
|
|
190
|
+
12660,
|
|
191
191
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
192
|
-
Button(( localize(
|
|
192
|
+
Button(( localize(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
193
193
|
)),
|
|
194
194
|
completionEvents: [
|
|
195
195
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -199,11 +199,11 @@ const walkthroughs = [
|
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
id: 'videoTutorial',
|
|
202
|
-
title: ( localize(
|
|
202
|
+
title: ( localize(12662, "Watch video tutorials")),
|
|
203
203
|
description: ( localize(
|
|
204
|
-
|
|
204
|
+
12663,
|
|
205
205
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
206
|
-
Button(( localize(
|
|
206
|
+
Button(( localize(12664, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
207
207
|
)),
|
|
208
208
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
209
209
|
}
|
|
@@ -212,23 +212,23 @@ const walkthroughs = [
|
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
id: 'SetupWeb',
|
|
215
|
-
title: ( localize(
|
|
216
|
-
description: ( localize(
|
|
215
|
+
title: ( localize(12665, "Get Started with VS Code for the Web")),
|
|
216
|
+
description: ( localize(12666, "Customize your editor, learn the basics, and start coding")),
|
|
217
217
|
isFeatured: true,
|
|
218
218
|
icon: setupIcon,
|
|
219
219
|
when: 'isWeb',
|
|
220
220
|
next: 'Beginner',
|
|
221
|
-
walkthroughPageTitle: ( localize(
|
|
221
|
+
walkthroughPageTitle: ( localize(12667, 'Setup VS Code Web')),
|
|
222
222
|
content: {
|
|
223
223
|
type: 'steps',
|
|
224
224
|
steps: [
|
|
225
225
|
{
|
|
226
226
|
id: 'pickColorThemeWeb',
|
|
227
|
-
title: ( localize(
|
|
227
|
+
title: ( localize(12659, "Choose your theme")),
|
|
228
228
|
description: ( localize(
|
|
229
|
-
|
|
229
|
+
12660,
|
|
230
230
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
231
|
-
Button(( localize(
|
|
231
|
+
Button(( localize(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
232
232
|
)),
|
|
233
233
|
completionEvents: [
|
|
234
234
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -238,11 +238,11 @@ const walkthroughs = [
|
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
id: 'menuBarWeb',
|
|
241
|
-
title: ( localize(
|
|
241
|
+
title: ( localize(12668, "Just the right amount of UI")),
|
|
242
242
|
description: ( localize(
|
|
243
|
-
|
|
243
|
+
12669,
|
|
244
244
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
245
|
-
Button(( localize(
|
|
245
|
+
Button(( localize(12670, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
246
246
|
)),
|
|
247
247
|
when: 'isWeb',
|
|
248
248
|
media: {
|
|
@@ -251,11 +251,11 @@ const walkthroughs = [
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
id: 'extensionsWebWeb',
|
|
254
|
-
title: ( localize(
|
|
254
|
+
title: ( localize(12671, "Code with extensions")),
|
|
255
255
|
description: ( localize(
|
|
256
|
-
|
|
256
|
+
12672,
|
|
257
257
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
258
|
-
Button(( localize(
|
|
258
|
+
Button(( localize(12673, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
259
259
|
)),
|
|
260
260
|
when: 'workspacePlatform == \'webworker\'',
|
|
261
261
|
media: {
|
|
@@ -264,11 +264,11 @@ const walkthroughs = [
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
id: 'findLanguageExtensionsWeb',
|
|
267
|
-
title: ( localize(
|
|
267
|
+
title: ( localize(12674, "Rich support for all your languages")),
|
|
268
268
|
description: ( localize(
|
|
269
|
-
|
|
269
|
+
12675,
|
|
270
270
|
"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}",
|
|
271
|
-
Button(( localize(
|
|
271
|
+
Button(( localize(12676, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
272
272
|
)),
|
|
273
273
|
when: 'workspacePlatform != \'webworker\'',
|
|
274
274
|
media: {
|
|
@@ -277,11 +277,11 @@ const walkthroughs = [
|
|
|
277
277
|
},
|
|
278
278
|
{
|
|
279
279
|
id: 'settingsSyncWeb',
|
|
280
|
-
title: ( localize(
|
|
280
|
+
title: ( localize(12677, "Sync settings across devices")),
|
|
281
281
|
description: ( localize(
|
|
282
|
-
|
|
282
|
+
12678,
|
|
283
283
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
284
|
-
Button(( localize(
|
|
284
|
+
Button(( localize(12679, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
285
285
|
)),
|
|
286
286
|
when: 'syncStatus != uninitialized',
|
|
287
287
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -291,22 +291,22 @@ const walkthroughs = [
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
id: 'commandPaletteTaskWeb',
|
|
294
|
-
title: ( localize(
|
|
294
|
+
title: ( localize(12680, "Unlock productivity with the Command Palette ")),
|
|
295
295
|
description: ( localize(
|
|
296
|
-
|
|
296
|
+
12681,
|
|
297
297
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
298
|
-
Button(( localize(
|
|
298
|
+
Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
299
299
|
)),
|
|
300
300
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
301
301
|
},
|
|
302
302
|
{
|
|
303
303
|
id: 'pickAFolderTask-WebWeb',
|
|
304
|
-
title: ( localize(
|
|
304
|
+
title: ( localize(12683, "Open up your code")),
|
|
305
305
|
description: ( localize(
|
|
306
|
-
|
|
306
|
+
12684,
|
|
307
307
|
"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}",
|
|
308
|
-
Button(( localize(
|
|
309
|
-
Button(( localize(
|
|
308
|
+
Button(( localize(12685, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
309
|
+
Button(( localize(12686, "Open Repository")), 'command:remoteHub.openRepository')
|
|
310
310
|
)),
|
|
311
311
|
when: 'workspaceFolderCount == 0',
|
|
312
312
|
media: {
|
|
@@ -315,11 +315,11 @@ const walkthroughs = [
|
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
id: 'quickOpenWeb',
|
|
318
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(12687, "Quickly navigate between your files")),
|
|
319
319
|
description: ( localize(
|
|
320
|
-
|
|
320
|
+
12688,
|
|
321
321
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
322
|
-
Button(( localize(
|
|
322
|
+
Button(( localize(12689, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
323
323
|
)),
|
|
324
324
|
when: 'workspaceFolderCount != 0',
|
|
325
325
|
media: {
|
|
@@ -331,26 +331,26 @@ const walkthroughs = [
|
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
id: 'SetupAccessibility',
|
|
334
|
-
title: ( localize(
|
|
334
|
+
title: ( localize(12690, "Get Started with Accessibility Features")),
|
|
335
335
|
description: ( localize(
|
|
336
|
-
|
|
336
|
+
12691,
|
|
337
337
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
338
338
|
)),
|
|
339
339
|
isFeatured: true,
|
|
340
340
|
icon: setupIcon,
|
|
341
341
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
342
342
|
next: 'Setup',
|
|
343
|
-
walkthroughPageTitle: ( localize(
|
|
343
|
+
walkthroughPageTitle: ( localize(12692, 'Setup VS Code Accessibility')),
|
|
344
344
|
content: {
|
|
345
345
|
type: 'steps',
|
|
346
346
|
steps: [
|
|
347
347
|
{
|
|
348
348
|
id: 'accessibilityHelp',
|
|
349
|
-
title: ( localize(
|
|
349
|
+
title: ( localize(12693, "Use the accessibility help dialog to learn about features")),
|
|
350
350
|
description: ( localize(
|
|
351
|
-
|
|
351
|
+
12694,
|
|
352
352
|
"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}",
|
|
353
|
-
Button(( localize(
|
|
353
|
+
Button(( localize(12695, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
354
354
|
)),
|
|
355
355
|
media: {
|
|
356
356
|
type: 'markdown', path: 'empty'
|
|
@@ -359,13 +359,13 @@ const walkthroughs = [
|
|
|
359
359
|
{
|
|
360
360
|
id: 'accessibleView',
|
|
361
361
|
title: ( localize(
|
|
362
|
-
|
|
362
|
+
12696,
|
|
363
363
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
364
364
|
)),
|
|
365
365
|
description: ( localize(
|
|
366
|
-
|
|
366
|
+
12697,
|
|
367
367
|
"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}",
|
|
368
|
-
Button(( localize(
|
|
368
|
+
Button(( localize(12698, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
369
369
|
)),
|
|
370
370
|
media: {
|
|
371
371
|
type: 'markdown', path: 'empty'
|
|
@@ -373,11 +373,11 @@ const walkthroughs = [
|
|
|
373
373
|
},
|
|
374
374
|
{
|
|
375
375
|
id: 'verbositySettings',
|
|
376
|
-
title: ( localize(
|
|
376
|
+
title: ( localize(12699, "Control the verbosity of aria labels")),
|
|
377
377
|
description: ( localize(
|
|
378
|
-
|
|
378
|
+
12700,
|
|
379
379
|
"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}",
|
|
380
|
-
Button(( localize(
|
|
380
|
+
Button(( localize(12701, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
381
381
|
)),
|
|
382
382
|
media: {
|
|
383
383
|
type: 'markdown', path: 'empty'
|
|
@@ -385,21 +385,21 @@ const walkthroughs = [
|
|
|
385
385
|
},
|
|
386
386
|
{
|
|
387
387
|
id: 'commandPaletteTaskAccessibility',
|
|
388
|
-
title: ( localize(
|
|
388
|
+
title: ( localize(12702, "Unlock productivity with the Command Palette ")),
|
|
389
389
|
description: ( localize(
|
|
390
|
-
|
|
390
|
+
12703,
|
|
391
391
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
392
|
-
Button(( localize(
|
|
392
|
+
Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
393
393
|
)),
|
|
394
394
|
media: { type: 'markdown', path: 'empty' },
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
id: 'keybindingsAccessibility',
|
|
398
|
-
title: ( localize(
|
|
398
|
+
title: ( localize(12704, "Customize your keyboard shortcuts")),
|
|
399
399
|
description: ( localize(
|
|
400
|
-
|
|
400
|
+
12705,
|
|
401
401
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
402
|
-
Button(( localize(
|
|
402
|
+
Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
403
403
|
)),
|
|
404
404
|
media: {
|
|
405
405
|
type: 'markdown', path: 'empty',
|
|
@@ -408,14 +408,14 @@ const walkthroughs = [
|
|
|
408
408
|
{
|
|
409
409
|
id: 'accessibilitySignals',
|
|
410
410
|
title: ( localize(
|
|
411
|
-
|
|
411
|
+
12707,
|
|
412
412
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
413
413
|
)),
|
|
414
414
|
description: ( localize(
|
|
415
|
-
|
|
415
|
+
12708,
|
|
416
416
|
"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}",
|
|
417
|
-
Button(( localize(
|
|
418
|
-
Button(( localize(
|
|
417
|
+
Button(( localize(12709, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
418
|
+
Button(( localize(12710, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
419
419
|
)),
|
|
420
420
|
media: {
|
|
421
421
|
type: 'markdown', path: 'empty'
|
|
@@ -424,13 +424,13 @@ const walkthroughs = [
|
|
|
424
424
|
{
|
|
425
425
|
id: 'hover',
|
|
426
426
|
title: ( localize(
|
|
427
|
-
|
|
427
|
+
12711,
|
|
428
428
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
429
429
|
)),
|
|
430
430
|
description: ( localize(
|
|
431
|
-
|
|
431
|
+
12712,
|
|
432
432
|
"While focus is in the editor on a variable or symbol, a hover can be focused with the Show or Open Hover command.\n{0}",
|
|
433
|
-
Button(( localize(
|
|
433
|
+
Button(( localize(12713, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
434
434
|
)),
|
|
435
435
|
media: {
|
|
436
436
|
type: 'markdown', path: 'empty'
|
|
@@ -438,11 +438,11 @@ const walkthroughs = [
|
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
id: 'goToSymbol',
|
|
441
|
-
title: ( localize(
|
|
441
|
+
title: ( localize(12714, "Navigate to symbols in a file")),
|
|
442
442
|
description: ( localize(
|
|
443
|
-
|
|
443
|
+
12715,
|
|
444
444
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
445
|
-
Button(( localize(
|
|
445
|
+
Button(( localize(12716, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
446
446
|
)),
|
|
447
447
|
media: {
|
|
448
448
|
type: 'markdown', path: 'empty'
|
|
@@ -451,14 +451,14 @@ const walkthroughs = [
|
|
|
451
451
|
{
|
|
452
452
|
id: 'codeFolding',
|
|
453
453
|
title: ( localize(
|
|
454
|
-
|
|
454
|
+
12717,
|
|
455
455
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
456
456
|
)),
|
|
457
457
|
description: ( localize(
|
|
458
|
-
|
|
458
|
+
12718,
|
|
459
459
|
"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",
|
|
460
|
-
Button(( localize(
|
|
461
|
-
Button(( localize(
|
|
460
|
+
Button(( localize(12719, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
461
|
+
Button(( localize(12720, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
462
462
|
)),
|
|
463
463
|
media: {
|
|
464
464
|
type: 'markdown', path: 'empty'
|
|
@@ -466,12 +466,12 @@ const walkthroughs = [
|
|
|
466
466
|
},
|
|
467
467
|
{
|
|
468
468
|
id: 'intellisense',
|
|
469
|
-
title: ( localize(
|
|
469
|
+
title: ( localize(12721, "Use Intellisense to improve coding efficiency")),
|
|
470
470
|
description: ( localize(
|
|
471
|
-
|
|
471
|
+
12722,
|
|
472
472
|
"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.",
|
|
473
|
-
Button(( localize(
|
|
474
|
-
Button(( localize(
|
|
473
|
+
Button(( localize(12723, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
474
|
+
Button(( localize(12724, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
475
475
|
)),
|
|
476
476
|
media: {
|
|
477
477
|
type: 'markdown', path: 'empty'
|
|
@@ -479,11 +479,11 @@ const walkthroughs = [
|
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
id: 'accessibilitySettings',
|
|
482
|
-
title: ( localize(
|
|
482
|
+
title: ( localize(12725, "Configure accessibility settings")),
|
|
483
483
|
description: ( localize(
|
|
484
|
-
|
|
484
|
+
12726,
|
|
485
485
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
486
|
-
Button(( localize(
|
|
486
|
+
Button(( localize(12727, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
487
487
|
)),
|
|
488
488
|
media: { type: 'markdown', path: 'empty' }
|
|
489
489
|
}
|
|
@@ -493,20 +493,20 @@ const walkthroughs = [
|
|
|
493
493
|
{
|
|
494
494
|
id: 'Beginner',
|
|
495
495
|
isFeatured: false,
|
|
496
|
-
title: ( localize(
|
|
496
|
+
title: ( localize(12728, "Learn the Fundamentals")),
|
|
497
497
|
icon: beginnerIcon,
|
|
498
|
-
description: ( localize(
|
|
499
|
-
walkthroughPageTitle: ( localize(
|
|
498
|
+
description: ( localize(12729, "Get an overview of the most essential features")),
|
|
499
|
+
walkthroughPageTitle: ( localize(12730, 'Essential Features')),
|
|
500
500
|
content: {
|
|
501
501
|
type: 'steps',
|
|
502
502
|
steps: [
|
|
503
503
|
{
|
|
504
504
|
id: 'settingsAndSync',
|
|
505
|
-
title: ( localize(
|
|
505
|
+
title: ( localize(12731, "Tune your settings")),
|
|
506
506
|
description: ( localize(
|
|
507
|
-
|
|
507
|
+
12732,
|
|
508
508
|
"Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
|
|
509
|
-
Button(( localize(
|
|
509
|
+
Button(( localize(12733, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
510
510
|
)),
|
|
511
511
|
when: 'workspacePlatform != \'webworker\' && syncStatus != uninitialized',
|
|
512
512
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -516,11 +516,11 @@ const walkthroughs = [
|
|
|
516
516
|
},
|
|
517
517
|
{
|
|
518
518
|
id: 'extensions',
|
|
519
|
-
title: ( localize(
|
|
519
|
+
title: ( localize(12671, "Code with extensions")),
|
|
520
520
|
description: ( localize(
|
|
521
|
-
|
|
521
|
+
12734,
|
|
522
522
|
"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}",
|
|
523
|
-
Button(( localize(
|
|
523
|
+
Button(( localize(12735, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
524
524
|
)),
|
|
525
525
|
when: 'workspacePlatform != \'webworker\'',
|
|
526
526
|
media: {
|
|
@@ -529,11 +529,11 @@ const walkthroughs = [
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
id: 'terminal',
|
|
532
|
-
title: ( localize(
|
|
532
|
+
title: ( localize(12736, "Built-in terminal")),
|
|
533
533
|
description: ( localize(
|
|
534
|
-
|
|
534
|
+
12737,
|
|
535
535
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
536
|
-
Button(( localize(
|
|
536
|
+
Button(( localize(12738, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
537
537
|
)),
|
|
538
538
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
539
539
|
media: {
|
|
@@ -542,11 +542,11 @@ const walkthroughs = [
|
|
|
542
542
|
},
|
|
543
543
|
{
|
|
544
544
|
id: 'debugging',
|
|
545
|
-
title: ( localize(
|
|
545
|
+
title: ( localize(12739, "Watch your code in action")),
|
|
546
546
|
description: ( localize(
|
|
547
|
-
|
|
547
|
+
12740,
|
|
548
548
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
549
|
-
Button(( localize(
|
|
549
|
+
Button(( localize(12741, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
550
550
|
)),
|
|
551
551
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
552
552
|
media: {
|
|
@@ -555,11 +555,11 @@ const walkthroughs = [
|
|
|
555
555
|
},
|
|
556
556
|
{
|
|
557
557
|
id: 'scmClone',
|
|
558
|
-
title: ( localize(
|
|
558
|
+
title: ( localize(12742, "Track your code with Git")),
|
|
559
559
|
description: ( localize(
|
|
560
|
-
|
|
560
|
+
12743,
|
|
561
561
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
562
|
-
Button(( localize(
|
|
562
|
+
Button(( localize(12744, "Clone Repository")), 'command:git.clone')
|
|
563
563
|
)),
|
|
564
564
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
565
565
|
media: {
|
|
@@ -568,11 +568,11 @@ const walkthroughs = [
|
|
|
568
568
|
},
|
|
569
569
|
{
|
|
570
570
|
id: 'scmSetup',
|
|
571
|
-
title: ( localize(
|
|
571
|
+
title: ( localize(12742, "Track your code with Git")),
|
|
572
572
|
description: ( localize(
|
|
573
|
-
|
|
573
|
+
12745,
|
|
574
574
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
575
|
-
Button(( localize(
|
|
575
|
+
Button(( localize(12746, "Initialize Git Repository")), 'command:git.init')
|
|
576
576
|
)),
|
|
577
577
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
578
578
|
media: {
|
|
@@ -581,11 +581,11 @@ const walkthroughs = [
|
|
|
581
581
|
},
|
|
582
582
|
{
|
|
583
583
|
id: 'scm',
|
|
584
|
-
title: ( localize(
|
|
584
|
+
title: ( localize(12742, "Track your code with Git")),
|
|
585
585
|
description: ( localize(
|
|
586
|
-
|
|
586
|
+
12747,
|
|
587
587
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
588
|
-
Button(( localize(
|
|
588
|
+
Button(( localize(12748, "Open Source Control")), 'command:workbench.view.scm')
|
|
589
589
|
)),
|
|
590
590
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
591
591
|
media: {
|
|
@@ -594,11 +594,11 @@ const walkthroughs = [
|
|
|
594
594
|
},
|
|
595
595
|
{
|
|
596
596
|
id: 'installGit',
|
|
597
|
-
title: ( localize(
|
|
597
|
+
title: ( localize(12749, "Install Git")),
|
|
598
598
|
description: ( localize(
|
|
599
|
-
|
|
599
|
+
12750,
|
|
600
600
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
601
|
-
Button(( localize(
|
|
601
|
+
Button(( localize(12751, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
602
602
|
'[',
|
|
603
603
|
'](command:workbench.action.reloadWindow)'
|
|
604
604
|
)),
|
|
@@ -612,12 +612,12 @@ const walkthroughs = [
|
|
|
612
612
|
},
|
|
613
613
|
{
|
|
614
614
|
id: 'tasks',
|
|
615
|
-
title: ( localize(
|
|
615
|
+
title: ( localize(12752, "Automate your project tasks")),
|
|
616
616
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
617
617
|
description: ( localize(
|
|
618
|
-
|
|
618
|
+
12753,
|
|
619
619
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
620
|
-
Button(( localize(
|
|
620
|
+
Button(( localize(12754, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
621
621
|
)),
|
|
622
622
|
media: {
|
|
623
623
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -625,11 +625,11 @@ const walkthroughs = [
|
|
|
625
625
|
},
|
|
626
626
|
{
|
|
627
627
|
id: 'shortcuts',
|
|
628
|
-
title: ( localize(
|
|
628
|
+
title: ( localize(12755, "Customize your shortcuts")),
|
|
629
629
|
description: ( localize(
|
|
630
|
-
|
|
630
|
+
12756,
|
|
631
631
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
632
|
-
Button(( localize(
|
|
632
|
+
Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
633
633
|
)),
|
|
634
634
|
media: {
|
|
635
635
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -637,12 +637,12 @@ const walkthroughs = [
|
|
|
637
637
|
},
|
|
638
638
|
{
|
|
639
639
|
id: 'workspaceTrust',
|
|
640
|
-
title: ( localize(
|
|
640
|
+
title: ( localize(12757, "Safely browse and edit code")),
|
|
641
641
|
description: ( localize(
|
|
642
|
-
|
|
642
|
+
12758,
|
|
643
643
|
"{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.",
|
|
644
|
-
Button(( localize(
|
|
645
|
-
Button(( localize(
|
|
644
|
+
Button(( localize(12759, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
645
|
+
Button(( localize(12760, "enable trust")), 'command:toSide:workbench.trust.manage')
|
|
646
646
|
)),
|
|
647
647
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
648
648
|
media: {
|
|
@@ -654,20 +654,20 @@ const walkthroughs = [
|
|
|
654
654
|
},
|
|
655
655
|
{
|
|
656
656
|
id: 'notebooks',
|
|
657
|
-
title: ( localize(
|
|
657
|
+
title: ( localize(12761, "Customize Notebooks")),
|
|
658
658
|
description: '',
|
|
659
659
|
icon: setupIcon,
|
|
660
660
|
isFeatured: false,
|
|
661
661
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
662
|
-
walkthroughPageTitle: ( localize(
|
|
662
|
+
walkthroughPageTitle: ( localize(12762, 'Notebooks')),
|
|
663
663
|
content: {
|
|
664
664
|
type: 'steps',
|
|
665
665
|
steps: [
|
|
666
666
|
{
|
|
667
667
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
668
668
|
id: 'notebookProfile',
|
|
669
|
-
title: ( localize(
|
|
670
|
-
description: ( localize(
|
|
669
|
+
title: ( localize(12763, "Select the layout for your notebooks")),
|
|
670
|
+
description: ( localize(12764, "Get notebooks to feel just the way you prefer")),
|
|
671
671
|
when: 'userHasOpenedNotebook',
|
|
672
672
|
media: {
|
|
673
673
|
type: 'markdown', path: 'notebookProfile'
|