@codingame/monaco-vscode-walkthrough-service-override 9.0.3 → 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.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +50 -39
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +84 -62
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +101 -0
- 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 +2 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +6 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +5 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +21 -17
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +182 -150
- 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/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/vs_code_editor_walkthrough.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughActions.js +8 -10
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +9 -8
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +10 -12
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +2 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -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
|
-
|
|
24
|
-
const
|
|
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(
|
|
29
|
-
description: ( localize(
|
|
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(
|
|
39
|
-
description: ( localize(
|
|
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(
|
|
50
|
-
description: ( localize(
|
|
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(
|
|
61
|
-
description: ( localize(
|
|
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(
|
|
72
|
-
description: ( localize(
|
|
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(
|
|
83
|
-
description: ( localize(
|
|
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(
|
|
94
|
+
title: ( localize(7390, "Open Repository...")),
|
|
94
95
|
description: ( localize(
|
|
95
|
-
|
|
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(
|
|
108
|
-
description: ( localize(
|
|
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(
|
|
119
|
-
description: ( localize(
|
|
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(
|
|
130
|
-
description: ( localize(
|
|
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(
|
|
144
|
-
description: ( localize(
|
|
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(
|
|
155
|
+
title: ( localize(7400, "Choose your theme")),
|
|
155
156
|
description: ( localize(
|
|
156
|
-
|
|
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(
|
|
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(
|
|
169
|
+
title: ( localize(7403, "Code with extensions")),
|
|
170
170
|
description: ( localize(
|
|
171
|
-
|
|
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(
|
|
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(
|
|
182
|
+
title: ( localize(7406, "Rich support for all your languages")),
|
|
183
183
|
description: ( localize(
|
|
184
|
-
|
|
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(
|
|
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(
|
|
195
|
+
title: ( localize(7409, "Tune your settings")),
|
|
196
196
|
description: ( localize(
|
|
197
|
-
|
|
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(
|
|
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(
|
|
207
|
+
title: ( localize(7412, "Sync settings across devices")),
|
|
208
208
|
description: ( localize(
|
|
209
|
-
|
|
209
|
+
7413,
|
|
210
210
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
211
|
-
Button(( localize(
|
|
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(
|
|
221
|
+
title: ( localize(7415, "Unlock productivity with the Command Palette ")),
|
|
222
222
|
description: ( localize(
|
|
223
|
-
|
|
223
|
+
7416,
|
|
224
224
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
225
|
-
Button(( localize(
|
|
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(
|
|
231
|
+
title: ( localize(7418, "Open up your code")),
|
|
232
232
|
description: ( localize(
|
|
233
|
-
|
|
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(
|
|
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(
|
|
244
|
+
title: ( localize(7418, "Open up your code")),
|
|
245
245
|
description: ( localize(
|
|
246
|
-
|
|
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(
|
|
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(
|
|
257
|
+
title: ( localize(7421, "Quickly navigate between your files")),
|
|
258
258
|
description: ( localize(
|
|
259
|
-
|
|
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(
|
|
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(
|
|
270
|
+
title: ( localize(7424, "Watch video tutorials")),
|
|
271
271
|
description: ( localize(
|
|
272
|
-
|
|
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(
|
|
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(
|
|
284
|
-
description: ( localize(
|
|
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(
|
|
294
|
+
title: ( localize(7400, "Choose your theme")),
|
|
295
295
|
description: ( localize(
|
|
296
|
-
|
|
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(
|
|
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(
|
|
308
|
+
title: ( localize(7429, "Just the right amount of UI")),
|
|
309
309
|
description: ( localize(
|
|
310
|
-
|
|
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(
|
|
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(
|
|
321
|
+
title: ( localize(7403, "Code with extensions")),
|
|
322
322
|
description: ( localize(
|
|
323
|
-
|
|
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(
|
|
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(
|
|
334
|
+
title: ( localize(7406, "Rich support for all your languages")),
|
|
335
335
|
description: ( localize(
|
|
336
|
-
|
|
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(
|
|
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(
|
|
347
|
+
title: ( localize(7412, "Sync settings across devices")),
|
|
348
348
|
description: ( localize(
|
|
349
|
-
|
|
349
|
+
7413,
|
|
350
350
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
351
|
-
Button(( localize(
|
|
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(
|
|
361
|
+
title: ( localize(7415, "Unlock productivity with the Command Palette ")),
|
|
362
362
|
description: ( localize(
|
|
363
|
-
|
|
363
|
+
7416,
|
|
364
364
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
365
|
-
Button(( localize(
|
|
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(
|
|
371
|
+
title: ( localize(7418, "Open up your code")),
|
|
372
372
|
description: ( localize(
|
|
373
|
-
|
|
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(
|
|
376
|
-
Button(( localize(
|
|
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(
|
|
385
|
+
title: ( localize(7421, "Quickly navigate between your files")),
|
|
386
386
|
description: ( localize(
|
|
387
|
-
|
|
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(
|
|
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: '
|
|
401
|
-
title: ( localize(
|
|
400
|
+
id: 'SetupAccessibility',
|
|
401
|
+
title: ( localize(7435, "Get Started with Accessibility Features")),
|
|
402
402
|
description: ( localize(
|
|
403
|
-
|
|
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(
|
|
415
|
+
title: ( localize(7437, "Use the accessibility help dialog to learn about features")),
|
|
416
416
|
description: ( localize(
|
|
417
|
-
|
|
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(
|
|
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
|
-
|
|
429
|
-
"
|
|
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
|
-
|
|
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(
|
|
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(
|
|
442
|
+
title: ( localize(7443, "Control the verbosity of aria labels")),
|
|
443
443
|
description: ( localize(
|
|
444
|
-
|
|
445
|
-
"
|
|
446
|
-
Button(( localize(
|
|
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
|
-
|
|
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
|
-
|
|
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(
|
|
462
|
-
Button(( localize(
|
|
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
|
-
|
|
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
|
-
|
|
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(
|
|
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(
|
|
507
|
+
title: ( localize(7458, "Navigate to symbols in a file")),
|
|
486
508
|
description: ( localize(
|
|
487
|
-
|
|
509
|
+
7459,
|
|
488
510
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
489
|
-
Button(( localize(
|
|
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
|
-
|
|
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
|
-
|
|
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(
|
|
505
|
-
Button(( localize(
|
|
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(
|
|
535
|
+
title: ( localize(7465, "Use Intellisense to improve coding efficiency")),
|
|
514
536
|
description: ( localize(
|
|
515
|
-
|
|
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(
|
|
518
|
-
Button(( localize(
|
|
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(
|
|
562
|
+
title: ( localize(7472, "Learn the Fundamentals")),
|
|
531
563
|
icon: beginnerIcon,
|
|
532
|
-
description: ( localize(
|
|
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(
|
|
570
|
+
title: ( localize(7403, "Code with extensions")),
|
|
539
571
|
description: ( localize(
|
|
540
|
-
|
|
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(
|
|
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(
|
|
583
|
+
title: ( localize(7476, "Built-in terminal")),
|
|
552
584
|
description: ( localize(
|
|
553
|
-
|
|
585
|
+
7477,
|
|
554
586
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
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(
|
|
596
|
+
title: ( localize(7479, "Watch your code in action")),
|
|
565
597
|
description: ( localize(
|
|
566
|
-
|
|
598
|
+
7480,
|
|
567
599
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
568
|
-
Button(( localize(
|
|
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(
|
|
609
|
+
title: ( localize(7482, "Track your code with Git")),
|
|
578
610
|
description: ( localize(
|
|
579
|
-
|
|
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(
|
|
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(
|
|
622
|
+
title: ( localize(7482, "Track your code with Git")),
|
|
591
623
|
description: ( localize(
|
|
592
|
-
|
|
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(
|
|
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(
|
|
635
|
+
title: ( localize(7482, "Track your code with Git")),
|
|
604
636
|
description: ( localize(
|
|
605
|
-
|
|
637
|
+
7487,
|
|
606
638
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
607
|
-
Button(( localize(
|
|
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(
|
|
648
|
+
title: ( localize(7489, "Install Git")),
|
|
617
649
|
description: ( localize(
|
|
618
|
-
|
|
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(
|
|
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(
|
|
666
|
+
title: ( localize(7492, "Automate your project tasks")),
|
|
635
667
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
636
668
|
description: ( localize(
|
|
637
|
-
|
|
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(
|
|
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(
|
|
679
|
+
title: ( localize(7495, "Customize your shortcuts")),
|
|
648
680
|
description: ( localize(
|
|
649
|
-
|
|
681
|
+
7496,
|
|
650
682
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
651
|
-
Button(( localize(
|
|
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(
|
|
691
|
+
title: ( localize(7497, "Safely browse and edit code")),
|
|
660
692
|
description: ( localize(
|
|
661
|
-
|
|
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(
|
|
664
|
-
Button(( localize(
|
|
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(
|
|
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(
|
|
688
|
-
description: ( localize(
|
|
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'
|