@codingame/monaco-vscode-walkthrough-service-override 9.0.2 → 10.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.
Files changed (23) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +50 -39
  3. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +84 -62
  4. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +101 -0
  5. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +2 -1
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +6 -7
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +5 -7
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +21 -17
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +182 -150
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  16. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
  19. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.js +8 -10
  20. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +9 -8
  21. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +10 -12
  22. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +2 -3
  23. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -20,13 +20,14 @@ class GettingStartedContentProviderRegistry {
20
20
  const gettingStartedContentRegistry = ( (new GettingStartedContentProviderRegistry()));
21
21
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker', themePickerContent);
22
22
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
23
- const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7336, "Icon used for the setup category of welcome page")));
24
- const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7337, "Icon used for the beginner category of welcome page")));
23
+ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
24
+ const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7378, "Icon used for the setup category of welcome page")));
25
+ const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7379, "Icon used for the beginner category of welcome page")));
25
26
  const startEntries = [
26
27
  {
27
28
  id: 'welcome.showNewFileEntries',
28
- title: ( localize(7338, "New File...")),
29
- description: ( localize(7339, "Open a new untitled text file, notebook, or custom editor.")),
29
+ title: ( localize(7380, "New File...")),
30
+ description: ( localize(7381, "Open a new untitled text file, notebook, or custom editor.")),
30
31
  icon: Codicon.newFile,
31
32
  content: {
32
33
  type: 'startEntry',
@@ -35,8 +36,8 @@ const startEntries = [
35
36
  },
36
37
  {
37
38
  id: 'topLevelOpenMac',
38
- title: ( localize(7340, "Open...")),
39
- description: ( localize(7341, "Open a file or folder to start working")),
39
+ title: ( localize(7382, "Open...")),
40
+ description: ( localize(7383, "Open a file or folder to start working")),
40
41
  icon: Codicon.folderOpened,
41
42
  when: '!isWeb && isMac',
42
43
  content: {
@@ -46,8 +47,8 @@ const startEntries = [
46
47
  },
47
48
  {
48
49
  id: 'topLevelOpenFile',
49
- title: ( localize(7342, "Open File...")),
50
- description: ( localize(7343, "Open a file to start working")),
50
+ title: ( localize(7384, "Open File...")),
51
+ description: ( localize(7385, "Open a file to start working")),
51
52
  icon: Codicon.goToFile,
52
53
  when: 'isWeb || !isMac',
53
54
  content: {
@@ -57,8 +58,8 @@ const startEntries = [
57
58
  },
58
59
  {
59
60
  id: 'topLevelOpenFolder',
60
- title: ( localize(7344, "Open Folder...")),
61
- description: ( localize(7345, "Open a folder to start working")),
61
+ title: ( localize(7386, "Open Folder...")),
62
+ description: ( localize(7387, "Open a folder to start working")),
62
63
  icon: Codicon.folderOpened,
63
64
  when: '!isWeb && !isMac',
64
65
  content: {
@@ -68,8 +69,8 @@ const startEntries = [
68
69
  },
69
70
  {
70
71
  id: 'topLevelOpenFolderWeb',
71
- title: ( localize(7344, "Open Folder...")),
72
- description: ( localize(7345, "Open a folder to start working")),
72
+ title: ( localize(7386, "Open Folder...")),
73
+ description: ( localize(7387, "Open a folder to start working")),
73
74
  icon: Codicon.folderOpened,
74
75
  when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
75
76
  content: {
@@ -79,8 +80,8 @@ const startEntries = [
79
80
  },
80
81
  {
81
82
  id: 'topLevelGitClone',
82
- title: ( localize(7346, "Clone Git Repository...")),
83
- description: ( localize(7347, "Clone a remote repository to a local folder")),
83
+ title: ( localize(7388, "Clone Git Repository...")),
84
+ description: ( localize(7389, "Clone a remote repository to a local folder")),
84
85
  when: 'config.git.enabled && !git.missing',
85
86
  icon: Codicon.sourceControl,
86
87
  content: {
@@ -90,9 +91,9 @@ const startEntries = [
90
91
  },
91
92
  {
92
93
  id: 'topLevelGitOpen',
93
- title: ( localize(7348, "Open Repository...")),
94
+ title: ( localize(7390, "Open Repository...")),
94
95
  description: ( localize(
95
- 7349,
96
+ 7391,
96
97
  "Connect to a remote repository or pull request to browse, search, edit, and commit"
97
98
  )),
98
99
  when: 'workspacePlatform == \'webworker\'',
@@ -104,8 +105,8 @@ const startEntries = [
104
105
  },
105
106
  {
106
107
  id: 'topLevelShowWalkthroughs',
107
- title: ( localize(7350, "Open a Walkthrough...")),
108
- description: ( localize(7351, "View a walkthrough on the editor or an extension")),
108
+ title: ( localize(7392, "Open a Walkthrough...")),
109
+ description: ( localize(7393, "View a walkthrough on the editor or an extension")),
109
110
  icon: Codicon.checklist,
110
111
  when: 'allWalkthroughsHidden',
111
112
  content: {
@@ -115,8 +116,8 @@ const startEntries = [
115
116
  },
116
117
  {
117
118
  id: 'topLevelRemoteOpen',
118
- title: ( localize(7352, "Connect to...")),
119
- description: ( localize(7353, "Connect to remote development workspaces.")),
119
+ title: ( localize(7394, "Connect to...")),
120
+ description: ( localize(7395, "Connect to remote development workspaces.")),
120
121
  when: '!isWeb',
121
122
  icon: Codicon.remote,
122
123
  content: {
@@ -126,8 +127,8 @@ const startEntries = [
126
127
  },
127
128
  {
128
129
  id: 'topLevelOpenTunnel',
129
- title: ( localize(7354, "Open Tunnel...")),
130
- description: ( localize(7355, "Connect to a remote machine through a Tunnel")),
130
+ title: ( localize(7396, "Open Tunnel...")),
131
+ description: ( localize(7397, "Connect to a remote machine through a Tunnel")),
131
132
  when: 'isWeb && showRemoteStartEntryInWeb',
132
133
  icon: Codicon.remote,
133
134
  content: {
@@ -140,8 +141,8 @@ const Button = (title, href) => `[${title}](${href})`;
140
141
  const walkthroughs = [
141
142
  {
142
143
  id: 'Setup',
143
- title: ( localize(7356, "Get Started with VS Code")),
144
- description: ( localize(7357, "Customize your editor, learn the basics, and start coding")),
144
+ title: ( localize(7398, "Get Started with VS Code")),
145
+ description: ( localize(7399, "Customize your editor, learn the basics, and start coding")),
145
146
  isFeatured: true,
146
147
  icon: setupIcon,
147
148
  when: '!isWeb',
@@ -151,26 +152,25 @@ const walkthroughs = [
151
152
  steps: [
152
153
  {
153
154
  id: 'pickColorTheme',
154
- title: ( localize(7358, "Choose your theme")),
155
+ title: ( localize(7400, "Choose your theme")),
155
156
  description: ( localize(
156
- 7359,
157
+ 7401,
157
158
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
158
- Button(( localize(7360, "Browse Color Themes")), 'command:workbench.action.selectTheme')
159
+ Button(( localize(7402, "Browse Color Themes")), 'command:workbench.action.selectTheme')
159
160
  )),
160
161
  completionEvents: [
161
162
  'onSettingChanged:workbench.colorTheme',
162
163
  'onCommand:workbench.action.selectTheme'
163
164
  ],
164
- when: '!accessibilityModeEnabled',
165
165
  media: { type: 'markdown', path: 'theme_picker', }
166
166
  },
167
167
  {
168
168
  id: 'extensionsWeb',
169
- title: ( localize(7361, "Code with extensions")),
169
+ title: ( localize(7403, "Code with extensions")),
170
170
  description: ( localize(
171
- 7362,
171
+ 7404,
172
172
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
173
- Button(( localize(7363, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
173
+ Button(( localize(7405, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
174
174
  )),
175
175
  when: 'workspacePlatform == \'webworker\'',
176
176
  media: {
@@ -179,11 +179,11 @@ const walkthroughs = [
179
179
  },
180
180
  {
181
181
  id: 'findLanguageExtensions',
182
- title: ( localize(7364, "Rich support for all your languages")),
182
+ title: ( localize(7406, "Rich support for all your languages")),
183
183
  description: ( localize(
184
- 7365,
184
+ 7407,
185
185
  "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}",
186
- Button(( localize(7366, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
186
+ Button(( localize(7408, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
187
187
  )),
188
188
  when: 'workspacePlatform != \'webworker\'',
189
189
  media: {
@@ -192,11 +192,11 @@ const walkthroughs = [
192
192
  },
193
193
  {
194
194
  id: 'settings',
195
- title: ( localize(7367, "Tune your settings")),
195
+ title: ( localize(7409, "Tune your settings")),
196
196
  description: ( localize(
197
- 7368,
197
+ 7410,
198
198
  "Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
199
- Button(( localize(7369, "Open Settings")), 'command:toSide:workbench.action.openSettings')
199
+ Button(( localize(7411, "Open Settings")), 'command:toSide:workbench.action.openSettings')
200
200
  )),
201
201
  media: {
202
202
  type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
@@ -204,11 +204,11 @@ const walkthroughs = [
204
204
  },
205
205
  {
206
206
  id: 'settingsSync',
207
- title: ( localize(7370, "Sync settings across devices")),
207
+ title: ( localize(7412, "Sync settings across devices")),
208
208
  description: ( localize(
209
- 7371,
209
+ 7413,
210
210
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
211
- Button(( localize(7372, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
211
+ Button(( localize(7414, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
212
212
  )),
213
213
  when: 'syncStatus != uninitialized',
214
214
  completionEvents: ['onEvent:sync-enabled'],
@@ -218,21 +218,21 @@ const walkthroughs = [
218
218
  },
219
219
  {
220
220
  id: 'commandPaletteTask',
221
- title: ( localize(7373, "Unlock productivity with the Command Palette ")),
221
+ title: ( localize(7415, "Unlock productivity with the Command Palette ")),
222
222
  description: ( localize(
223
- 7374,
223
+ 7416,
224
224
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
225
- Button(( localize(7375, "Open Command Palette")), 'command:workbench.action.showCommands')
225
+ Button(( localize(7417, "Open Command Palette")), 'command:workbench.action.showCommands')
226
226
  )),
227
227
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
228
228
  },
229
229
  {
230
230
  id: 'pickAFolderTask-Mac',
231
- title: ( localize(7376, "Open up your code")),
231
+ title: ( localize(7418, "Open up your code")),
232
232
  description: ( localize(
233
- 7377,
233
+ 7419,
234
234
  "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
235
- Button(( localize(7378, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
235
+ Button(( localize(7420, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
236
236
  )),
237
237
  when: 'isMac && workspaceFolderCount == 0',
238
238
  media: {
@@ -241,11 +241,11 @@ const walkthroughs = [
241
241
  },
242
242
  {
243
243
  id: 'pickAFolderTask-Other',
244
- title: ( localize(7376, "Open up your code")),
244
+ title: ( localize(7418, "Open up your code")),
245
245
  description: ( localize(
246
- 7377,
246
+ 7419,
247
247
  "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
248
- Button(( localize(7378, "Pick a Folder")), 'command:workbench.action.files.openFolder')
248
+ Button(( localize(7420, "Pick a Folder")), 'command:workbench.action.files.openFolder')
249
249
  )),
250
250
  when: '!isMac && workspaceFolderCount == 0',
251
251
  media: {
@@ -254,11 +254,11 @@ const walkthroughs = [
254
254
  },
255
255
  {
256
256
  id: 'quickOpen',
257
- title: ( localize(7379, "Quickly navigate between your files")),
257
+ title: ( localize(7421, "Quickly navigate between your files")),
258
258
  description: ( localize(
259
- 7380,
259
+ 7422,
260
260
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
261
- Button(( localize(7381, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
261
+ Button(( localize(7423, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
262
262
  )),
263
263
  when: 'workspaceFolderCount != 0',
264
264
  media: {
@@ -267,11 +267,11 @@ const walkthroughs = [
267
267
  },
268
268
  {
269
269
  id: 'videoTutorial',
270
- title: ( localize(7382, "Watch video tutorials")),
270
+ title: ( localize(7424, "Watch video tutorials")),
271
271
  description: ( localize(
272
- 7383,
272
+ 7425,
273
273
  "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
274
- Button(( localize(7384, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
274
+ Button(( localize(7426, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
275
275
  )),
276
276
  media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
277
277
  }
@@ -280,8 +280,8 @@ const walkthroughs = [
280
280
  },
281
281
  {
282
282
  id: 'SetupWeb',
283
- title: ( localize(7385, "Get Started with VS Code for the Web")),
284
- description: ( localize(7386, "Customize your editor, learn the basics, and start coding")),
283
+ title: ( localize(7427, "Get Started with VS Code for the Web")),
284
+ description: ( localize(7428, "Customize your editor, learn the basics, and start coding")),
285
285
  isFeatured: true,
286
286
  icon: setupIcon,
287
287
  when: 'isWeb',
@@ -291,11 +291,11 @@ const walkthroughs = [
291
291
  steps: [
292
292
  {
293
293
  id: 'pickColorThemeWeb',
294
- title: ( localize(7358, "Choose your theme")),
294
+ title: ( localize(7400, "Choose your theme")),
295
295
  description: ( localize(
296
- 7359,
296
+ 7401,
297
297
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
298
- Button(( localize(7360, "Browse Color Themes")), 'command:workbench.action.selectTheme')
298
+ Button(( localize(7402, "Browse Color Themes")), 'command:workbench.action.selectTheme')
299
299
  )),
300
300
  completionEvents: [
301
301
  'onSettingChanged:workbench.colorTheme',
@@ -305,11 +305,11 @@ const walkthroughs = [
305
305
  },
306
306
  {
307
307
  id: 'menuBarWeb',
308
- title: ( localize(7387, "Just the right amount of UI")),
308
+ title: ( localize(7429, "Just the right amount of UI")),
309
309
  description: ( localize(
310
- 7388,
310
+ 7430,
311
311
  "The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
312
- Button(( localize(7389, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
312
+ Button(( localize(7431, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
313
313
  )),
314
314
  when: 'isWeb',
315
315
  media: {
@@ -318,11 +318,11 @@ const walkthroughs = [
318
318
  },
319
319
  {
320
320
  id: 'extensionsWebWeb',
321
- title: ( localize(7361, "Code with extensions")),
321
+ title: ( localize(7403, "Code with extensions")),
322
322
  description: ( localize(
323
- 7362,
323
+ 7404,
324
324
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
325
- Button(( localize(7363, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
325
+ Button(( localize(7405, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
326
326
  )),
327
327
  when: 'workspacePlatform == \'webworker\'',
328
328
  media: {
@@ -331,11 +331,11 @@ const walkthroughs = [
331
331
  },
332
332
  {
333
333
  id: 'findLanguageExtensionsWeb',
334
- title: ( localize(7364, "Rich support for all your languages")),
334
+ title: ( localize(7406, "Rich support for all your languages")),
335
335
  description: ( localize(
336
- 7365,
336
+ 7407,
337
337
  "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}",
338
- Button(( localize(7366, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
338
+ Button(( localize(7408, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
339
339
  )),
340
340
  when: 'workspacePlatform != \'webworker\'',
341
341
  media: {
@@ -344,11 +344,11 @@ const walkthroughs = [
344
344
  },
345
345
  {
346
346
  id: 'settingsSyncWeb',
347
- title: ( localize(7370, "Sync settings across devices")),
347
+ title: ( localize(7412, "Sync settings across devices")),
348
348
  description: ( localize(
349
- 7371,
349
+ 7413,
350
350
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
351
- Button(( localize(7372, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
351
+ Button(( localize(7414, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
352
352
  )),
353
353
  when: 'syncStatus != uninitialized',
354
354
  completionEvents: ['onEvent:sync-enabled'],
@@ -358,22 +358,22 @@ const walkthroughs = [
358
358
  },
359
359
  {
360
360
  id: 'commandPaletteTaskWeb',
361
- title: ( localize(7373, "Unlock productivity with the Command Palette ")),
361
+ title: ( localize(7415, "Unlock productivity with the Command Palette ")),
362
362
  description: ( localize(
363
- 7374,
363
+ 7416,
364
364
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
365
- Button(( localize(7375, "Open Command Palette")), 'command:workbench.action.showCommands')
365
+ Button(( localize(7417, "Open Command Palette")), 'command:workbench.action.showCommands')
366
366
  )),
367
367
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
368
368
  },
369
369
  {
370
370
  id: 'pickAFolderTask-WebWeb',
371
- title: ( localize(7376, "Open up your code")),
371
+ title: ( localize(7418, "Open up your code")),
372
372
  description: ( localize(
373
- 7390,
373
+ 7432,
374
374
  "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}",
375
- Button(( localize(7391, "Open Folder")), 'command:workbench.action.addRootFolder'),
376
- Button(( localize(7392, "Open Repository")), 'command:remoteHub.openRepository')
375
+ Button(( localize(7433, "Open Folder")), 'command:workbench.action.addRootFolder'),
376
+ Button(( localize(7434, "Open Repository")), 'command:remoteHub.openRepository')
377
377
  )),
378
378
  when: 'workspaceFolderCount == 0',
379
379
  media: {
@@ -382,11 +382,11 @@ const walkthroughs = [
382
382
  },
383
383
  {
384
384
  id: 'quickOpenWeb',
385
- title: ( localize(7379, "Quickly navigate between your files")),
385
+ title: ( localize(7421, "Quickly navigate between your files")),
386
386
  description: ( localize(
387
- 7380,
387
+ 7422,
388
388
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
389
- Button(( localize(7381, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
389
+ Button(( localize(7423, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
390
390
  )),
391
391
  when: 'workspaceFolderCount != 0',
392
392
  media: {
@@ -397,10 +397,10 @@ const walkthroughs = [
397
397
  }
398
398
  },
399
399
  {
400
- id: 'SetupScreenReader',
401
- title: ( localize(7393, "Get Started with VS Code using a Screen Reader")),
400
+ id: 'SetupAccessibility',
401
+ title: ( localize(7435, "Get Started with Accessibility Features")),
402
402
  description: ( localize(
403
- 7394,
403
+ 7436,
404
404
  "Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
405
405
  )),
406
406
  isFeatured: true,
@@ -412,11 +412,11 @@ const walkthroughs = [
412
412
  steps: [
413
413
  {
414
414
  id: 'accessibilityHelp',
415
- title: ( localize(7395, "Use the accessibility help dialog to learn about features")),
415
+ title: ( localize(7437, "Use the accessibility help dialog to learn about features")),
416
416
  description: ( localize(
417
- 7396,
417
+ 7438,
418
418
  "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}",
419
- Button(( localize(7397, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
419
+ Button(( localize(7439, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
420
420
  )),
421
421
  media: {
422
422
  type: 'markdown', path: 'empty'
@@ -425,13 +425,13 @@ const walkthroughs = [
425
425
  {
426
426
  id: 'accessibleView',
427
427
  title: ( localize(
428
- 7398,
429
- "Use the accessible view to inspect content line by line, character by character"
428
+ 7440,
429
+ "Screen reader users can inspect content line by line, character by character in the accessible view."
430
430
  )),
431
431
  description: ( localize(
432
- 7399,
432
+ 7441,
433
433
  "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}",
434
- Button(( localize(7400, "Open Accessible View")), 'command:editor.action.accessibleView')
434
+ Button(( localize(7442, "Open Accessible View")), 'command:editor.action.accessibleView')
435
435
  )),
436
436
  media: {
437
437
  type: 'markdown', path: 'empty'
@@ -439,27 +439,49 @@ const walkthroughs = [
439
439
  },
440
440
  {
441
441
  id: 'verbositySettings',
442
- title: ( localize(7401, "Control the verbosity of aria labels")),
442
+ title: ( localize(7443, "Control the verbosity of aria labels")),
443
443
  description: ( localize(
444
- 7402,
445
- "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}",
446
- Button(( localize(7403, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
444
+ 7444,
445
+ "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}",
446
+ Button(( localize(7445, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
447
447
  )),
448
448
  media: {
449
449
  type: 'markdown', path: 'empty'
450
450
  }
451
451
  },
452
+ {
453
+ id: 'commandPaletteTaskAccessibility',
454
+ title: ( localize(7446, "Unlock productivity with the Command Palette ")),
455
+ description: ( localize(
456
+ 7447,
457
+ "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
458
+ Button(( localize(7417, "Open Command Palette")), 'command:workbench.action.showCommands')
459
+ )),
460
+ media: { type: 'markdown', path: 'empty' },
461
+ },
462
+ {
463
+ id: 'keybindingsAccessibility',
464
+ title: ( localize(7448, "Customize your keyboard shortcuts")),
465
+ description: ( localize(
466
+ 7449,
467
+ "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
468
+ Button(( localize(7450, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
469
+ )),
470
+ media: {
471
+ type: 'markdown', path: 'empty',
472
+ }
473
+ },
452
474
  {
453
475
  id: 'accessibilitySignals',
454
476
  title: ( localize(
455
- 7404,
477
+ 7451,
456
478
  "Fine tune which accessibility signals you want to receive via audio or a braille device"
457
479
  )),
458
480
  description: ( localize(
459
- 7405,
481
+ 7452,
460
482
  "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}",
461
- Button(( localize(7406, "List Signal Sounds")), 'command:signals.sounds.help'),
462
- Button(( localize(7407, "List Signal Announcements")), 'command:signals.announcements.help')
483
+ Button(( localize(7453, "List Signal Sounds")), 'command:signals.sounds.help'),
484
+ Button(( localize(7454, "List Signal Announcements")), 'command:accessibility.announcement.help')
463
485
  )),
464
486
  media: {
465
487
  type: 'markdown', path: 'empty'
@@ -468,13 +490,13 @@ const walkthroughs = [
468
490
  {
469
491
  id: 'hover',
470
492
  title: ( localize(
471
- 7408,
493
+ 7455,
472
494
  "Access the hover in the editor to get more information on a variable or symbol"
473
495
  )),
474
496
  description: ( localize(
475
- 7409,
497
+ 7456,
476
498
  "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}",
477
- Button(( localize(7410, "Show or Focus Hover")), 'command:editor.action.showHover')
499
+ Button(( localize(7457, "Show or Focus Hover")), 'command:editor.action.showHover')
478
500
  )),
479
501
  media: {
480
502
  type: 'markdown', path: 'empty'
@@ -482,11 +504,11 @@ const walkthroughs = [
482
504
  },
483
505
  {
484
506
  id: 'goToSymbol',
485
- title: ( localize(7411, "Navigate to symbols in a file")),
507
+ title: ( localize(7458, "Navigate to symbols in a file")),
486
508
  description: ( localize(
487
- 7412,
509
+ 7459,
488
510
  "The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
489
- Button(( localize(7413, "Go to Symbol")), 'command:editor.action.goToSymbol')
511
+ Button(( localize(7460, "Go to Symbol")), 'command:editor.action.goToSymbol')
490
512
  )),
491
513
  media: {
492
514
  type: 'markdown', path: 'empty'
@@ -495,14 +517,14 @@ const walkthroughs = [
495
517
  {
496
518
  id: 'codeFolding',
497
519
  title: ( localize(
498
- 7414,
520
+ 7461,
499
521
  "Use code folding to collapse blocks of code and focus on the code you're interested in."
500
522
  )),
501
523
  description: ( localize(
502
- 7415,
524
+ 7462,
503
525
  "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",
504
- Button(( localize(7416, "Toggle Fold")), 'command:editor.toggleFold'),
505
- Button(( localize(7417, "Toggle Fold Recursively")), 'editor.toggleFoldRecursively')
526
+ Button(( localize(7463, "Toggle Fold")), 'command:editor.toggleFold'),
527
+ Button(( localize(7464, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
506
528
  )),
507
529
  media: {
508
530
  type: 'markdown', path: 'empty'
@@ -510,16 +532,26 @@ const walkthroughs = [
510
532
  },
511
533
  {
512
534
  id: 'intellisense',
513
- title: ( localize(7418, "Use Intellisense to improve coding efficiency")),
535
+ title: ( localize(7465, "Use Intellisense to improve coding efficiency")),
514
536
  description: ( localize(
515
- 7419,
537
+ 7466,
516
538
  "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.",
517
- Button(( localize(7420, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
518
- Button(( localize(7421, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
539
+ Button(( localize(7467, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
540
+ Button(( localize(7468, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
519
541
  )),
520
542
  media: {
521
543
  type: 'markdown', path: 'empty'
522
544
  }
545
+ },
546
+ {
547
+ id: 'accessibilitySettings',
548
+ title: ( localize(7469, "Configure accessibility settings")),
549
+ description: ( localize(
550
+ 7470,
551
+ "Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
552
+ Button(( localize(7471, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
553
+ )),
554
+ media: { type: 'markdown', path: 'empty' }
523
555
  }
524
556
  ]
525
557
  }
@@ -527,19 +559,19 @@ const walkthroughs = [
527
559
  {
528
560
  id: 'Beginner',
529
561
  isFeatured: false,
530
- title: ( localize(7422, "Learn the Fundamentals")),
562
+ title: ( localize(7472, "Learn the Fundamentals")),
531
563
  icon: beginnerIcon,
532
- description: ( localize(7423, "Get an overview of the most essential features")),
564
+ description: ( localize(7473, "Get an overview of the most essential features")),
533
565
  content: {
534
566
  type: 'steps',
535
567
  steps: [
536
568
  {
537
569
  id: 'extensions',
538
- title: ( localize(7361, "Code with extensions")),
570
+ title: ( localize(7403, "Code with extensions")),
539
571
  description: ( localize(
540
- 7424,
572
+ 7474,
541
573
  "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}",
542
- Button(( localize(7425, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
574
+ Button(( localize(7475, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
543
575
  )),
544
576
  when: 'workspacePlatform != \'webworker\'',
545
577
  media: {
@@ -548,11 +580,11 @@ const walkthroughs = [
548
580
  },
549
581
  {
550
582
  id: 'terminal',
551
- title: ( localize(7426, "Built-in terminal")),
583
+ title: ( localize(7476, "Built-in terminal")),
552
584
  description: ( localize(
553
- 7427,
585
+ 7477,
554
586
  "Quickly run shell commands and monitor build output, right next to your code.\n{0}",
555
- Button(( localize(7428, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
587
+ Button(( localize(7478, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
556
588
  )),
557
589
  when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
558
590
  media: {
@@ -561,11 +593,11 @@ const walkthroughs = [
561
593
  },
562
594
  {
563
595
  id: 'debugging',
564
- title: ( localize(7429, "Watch your code in action")),
596
+ title: ( localize(7479, "Watch your code in action")),
565
597
  description: ( localize(
566
- 7430,
598
+ 7480,
567
599
  "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
568
- Button(( localize(7431, "Run your Project")), 'command:workbench.action.debug.selectandstart')
600
+ Button(( localize(7481, "Run your Project")), 'command:workbench.action.debug.selectandstart')
569
601
  )),
570
602
  when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
571
603
  media: {
@@ -574,11 +606,11 @@ const walkthroughs = [
574
606
  },
575
607
  {
576
608
  id: 'scmClone',
577
- title: ( localize(7432, "Track your code with Git")),
609
+ title: ( localize(7482, "Track your code with Git")),
578
610
  description: ( localize(
579
- 7433,
611
+ 7483,
580
612
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
581
- Button(( localize(7434, "Clone Repository")), 'command:git.clone')
613
+ Button(( localize(7484, "Clone Repository")), 'command:git.clone')
582
614
  )),
583
615
  when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
584
616
  media: {
@@ -587,11 +619,11 @@ const walkthroughs = [
587
619
  },
588
620
  {
589
621
  id: 'scmSetup',
590
- title: ( localize(7432, "Track your code with Git")),
622
+ title: ( localize(7482, "Track your code with Git")),
591
623
  description: ( localize(
592
- 7435,
624
+ 7485,
593
625
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
594
- Button(( localize(7436, "Initialize Git Repository")), 'command:git.init')
626
+ Button(( localize(7486, "Initialize Git Repository")), 'command:git.init')
595
627
  )),
596
628
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
597
629
  media: {
@@ -600,11 +632,11 @@ const walkthroughs = [
600
632
  },
601
633
  {
602
634
  id: 'scm',
603
- title: ( localize(7432, "Track your code with Git")),
635
+ title: ( localize(7482, "Track your code with Git")),
604
636
  description: ( localize(
605
- 7437,
637
+ 7487,
606
638
  "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
607
- Button(( localize(7438, "Open Source Control")), 'command:workbench.view.scm')
639
+ Button(( localize(7488, "Open Source Control")), 'command:workbench.view.scm')
608
640
  )),
609
641
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
610
642
  media: {
@@ -613,11 +645,11 @@ const walkthroughs = [
613
645
  },
614
646
  {
615
647
  id: 'installGit',
616
- title: ( localize(7439, "Install Git")),
648
+ title: ( localize(7489, "Install Git")),
617
649
  description: ( localize(
618
- 7440,
650
+ 7490,
619
651
  "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
620
- Button(( localize(7441, "Install Git")), 'https://aka.ms/vscode-install-git'),
652
+ Button(( localize(7491, "Install Git")), 'https://aka.ms/vscode-install-git'),
621
653
  '[',
622
654
  '](command:workbench.action.reloadWindow)'
623
655
  )),
@@ -631,12 +663,12 @@ const walkthroughs = [
631
663
  },
632
664
  {
633
665
  id: 'tasks',
634
- title: ( localize(7442, "Automate your project tasks")),
666
+ title: ( localize(7492, "Automate your project tasks")),
635
667
  when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
636
668
  description: ( localize(
637
- 7443,
669
+ 7493,
638
670
  "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
639
- Button(( localize(7444, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
671
+ Button(( localize(7494, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
640
672
  )),
641
673
  media: {
642
674
  type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
@@ -644,11 +676,11 @@ const walkthroughs = [
644
676
  },
645
677
  {
646
678
  id: 'shortcuts',
647
- title: ( localize(7445, "Customize your shortcuts")),
679
+ title: ( localize(7495, "Customize your shortcuts")),
648
680
  description: ( localize(
649
- 7446,
681
+ 7496,
650
682
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
651
- Button(( localize(7447, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
683
+ Button(( localize(7450, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
652
684
  )),
653
685
  media: {
654
686
  type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
@@ -656,12 +688,12 @@ const walkthroughs = [
656
688
  },
657
689
  {
658
690
  id: 'workspaceTrust',
659
- title: ( localize(7448, "Safely browse and edit code")),
691
+ title: ( localize(7497, "Safely browse and edit code")),
660
692
  description: ( localize(
661
- 7449,
693
+ 7498,
662
694
  "{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.",
663
- Button(( localize(7450, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
664
- Button(( localize(7451, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
695
+ Button(( localize(7499, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
696
+ Button(( localize(7500, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
665
697
  )),
666
698
  when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
667
699
  media: {
@@ -673,7 +705,7 @@ const walkthroughs = [
673
705
  },
674
706
  {
675
707
  id: 'notebooks',
676
- title: ( localize(7452, "Customize Notebooks")),
708
+ title: ( localize(7501, "Customize Notebooks")),
677
709
  description: '',
678
710
  icon: setupIcon,
679
711
  isFeatured: false,
@@ -684,8 +716,8 @@ const walkthroughs = [
684
716
  {
685
717
  completionEvents: ['onCommand:notebook.setProfile'],
686
718
  id: 'notebookProfile',
687
- title: ( localize(7453, "Select the layout for your notebooks")),
688
- description: ( localize(7454, "Get notebooks to feel just the way you prefer")),
719
+ title: ( localize(7502, "Select the layout for your notebooks")),
720
+ description: ( localize(7503, "Get notebooks to feel just the way you prefer")),
689
721
  when: 'userHasOpenedNotebook',
690
722
  media: {
691
723
  type: 'markdown', path: 'notebookProfile'