@codingame/monaco-vscode-walkthrough-service-override 11.0.0 → 11.0.2
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 +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +30 -30
- 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 +160 -160
- 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/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
|
@@ -21,13 +21,13 @@ const gettingStartedContentRegistry = ( (new GettingStartedContentProviderRegist
|
|
|
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
23
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
24
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
25
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
24
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7178, "Icon used for the setup category of welcome page")));
|
|
25
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7179, "Icon used for the beginner category of welcome page")));
|
|
26
26
|
const startEntries = [
|
|
27
27
|
{
|
|
28
28
|
id: 'welcome.showNewFileEntries',
|
|
29
|
-
title: ( localize(
|
|
30
|
-
description: ( localize(
|
|
29
|
+
title: ( localize(7180, "New File...")),
|
|
30
|
+
description: ( localize(7181, "Open a new untitled text file, notebook, or custom editor.")),
|
|
31
31
|
icon: Codicon.newFile,
|
|
32
32
|
content: {
|
|
33
33
|
type: 'startEntry',
|
|
@@ -36,8 +36,8 @@ const startEntries = [
|
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
id: 'topLevelOpenMac',
|
|
39
|
-
title: ( localize(
|
|
40
|
-
description: ( localize(
|
|
39
|
+
title: ( localize(7182, "Open...")),
|
|
40
|
+
description: ( localize(7183, "Open a file or folder to start working")),
|
|
41
41
|
icon: Codicon.folderOpened,
|
|
42
42
|
when: '!isWeb && isMac',
|
|
43
43
|
content: {
|
|
@@ -47,8 +47,8 @@ const startEntries = [
|
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
49
|
id: 'topLevelOpenFile',
|
|
50
|
-
title: ( localize(
|
|
51
|
-
description: ( localize(
|
|
50
|
+
title: ( localize(7184, "Open File...")),
|
|
51
|
+
description: ( localize(7185, "Open a file to start working")),
|
|
52
52
|
icon: Codicon.goToFile,
|
|
53
53
|
when: 'isWeb || !isMac',
|
|
54
54
|
content: {
|
|
@@ -58,8 +58,8 @@ const startEntries = [
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
id: 'topLevelOpenFolder',
|
|
61
|
-
title: ( localize(
|
|
62
|
-
description: ( localize(
|
|
61
|
+
title: ( localize(7186, "Open Folder...")),
|
|
62
|
+
description: ( localize(7187, "Open a folder to start working")),
|
|
63
63
|
icon: Codicon.folderOpened,
|
|
64
64
|
when: '!isWeb && !isMac',
|
|
65
65
|
content: {
|
|
@@ -69,8 +69,8 @@ const startEntries = [
|
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
id: 'topLevelOpenFolderWeb',
|
|
72
|
-
title: ( localize(
|
|
73
|
-
description: ( localize(
|
|
72
|
+
title: ( localize(7186, "Open Folder...")),
|
|
73
|
+
description: ( localize(7187, "Open a folder to start working")),
|
|
74
74
|
icon: Codicon.folderOpened,
|
|
75
75
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
76
76
|
content: {
|
|
@@ -80,8 +80,8 @@ const startEntries = [
|
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
id: 'topLevelGitClone',
|
|
83
|
-
title: ( localize(
|
|
84
|
-
description: ( localize(
|
|
83
|
+
title: ( localize(7188, "Clone Git Repository...")),
|
|
84
|
+
description: ( localize(7189, "Clone a remote repository to a local folder")),
|
|
85
85
|
when: 'config.git.enabled && !git.missing',
|
|
86
86
|
icon: Codicon.sourceControl,
|
|
87
87
|
content: {
|
|
@@ -91,9 +91,9 @@ const startEntries = [
|
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
id: 'topLevelGitOpen',
|
|
94
|
-
title: ( localize(
|
|
94
|
+
title: ( localize(7190, "Open Repository...")),
|
|
95
95
|
description: ( localize(
|
|
96
|
-
|
|
96
|
+
7191,
|
|
97
97
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
98
98
|
)),
|
|
99
99
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -105,8 +105,8 @@ const startEntries = [
|
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
id: 'topLevelShowWalkthroughs',
|
|
108
|
-
title: ( localize(
|
|
109
|
-
description: ( localize(
|
|
108
|
+
title: ( localize(7192, "Open a Walkthrough...")),
|
|
109
|
+
description: ( localize(7193, "View a walkthrough on the editor or an extension")),
|
|
110
110
|
icon: Codicon.checklist,
|
|
111
111
|
when: 'allWalkthroughsHidden',
|
|
112
112
|
content: {
|
|
@@ -116,8 +116,8 @@ const startEntries = [
|
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
id: 'topLevelRemoteOpen',
|
|
119
|
-
title: ( localize(
|
|
120
|
-
description: ( localize(
|
|
119
|
+
title: ( localize(7194, "Connect to...")),
|
|
120
|
+
description: ( localize(7195, "Connect to remote development workspaces.")),
|
|
121
121
|
when: '!isWeb',
|
|
122
122
|
icon: Codicon.remote,
|
|
123
123
|
content: {
|
|
@@ -127,8 +127,8 @@ const startEntries = [
|
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
id: 'topLevelOpenTunnel',
|
|
130
|
-
title: ( localize(
|
|
131
|
-
description: ( localize(
|
|
130
|
+
title: ( localize(7196, "Open Tunnel...")),
|
|
131
|
+
description: ( localize(7197, "Connect to a remote machine through a Tunnel")),
|
|
132
132
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
133
133
|
icon: Codicon.remote,
|
|
134
134
|
content: {
|
|
@@ -141,23 +141,23 @@ const Button = (title, href) => `[${title}](${href})`;
|
|
|
141
141
|
const walkthroughs = [
|
|
142
142
|
{
|
|
143
143
|
id: 'Setup',
|
|
144
|
-
title: ( localize(
|
|
145
|
-
description: ( localize(
|
|
144
|
+
title: ( localize(7198, "Get Started with VS Code")),
|
|
145
|
+
description: ( localize(7199, "Customize your editor, learn the basics, and start coding")),
|
|
146
146
|
isFeatured: true,
|
|
147
147
|
icon: setupIcon,
|
|
148
148
|
when: '!isWeb',
|
|
149
|
-
walkthroughPageTitle: ( localize(
|
|
149
|
+
walkthroughPageTitle: ( localize(7200, 'Setup VS Code')),
|
|
150
150
|
next: 'Beginner',
|
|
151
151
|
content: {
|
|
152
152
|
type: 'steps',
|
|
153
153
|
steps: [
|
|
154
154
|
{
|
|
155
155
|
id: 'pickColorTheme',
|
|
156
|
-
title: ( localize(
|
|
156
|
+
title: ( localize(7201, "Choose your theme")),
|
|
157
157
|
description: ( localize(
|
|
158
|
-
|
|
158
|
+
7202,
|
|
159
159
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
160
|
-
Button(( localize(
|
|
160
|
+
Button(( localize(7203, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
161
161
|
)),
|
|
162
162
|
completionEvents: [
|
|
163
163
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -167,11 +167,11 @@ const walkthroughs = [
|
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
id: 'extensionsWeb',
|
|
170
|
-
title: ( localize(
|
|
170
|
+
title: ( localize(7204, "Code with extensions")),
|
|
171
171
|
description: ( localize(
|
|
172
|
-
|
|
172
|
+
7205,
|
|
173
173
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
174
|
-
Button(( localize(
|
|
174
|
+
Button(( localize(7206, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
175
175
|
)),
|
|
176
176
|
when: 'workspacePlatform == \'webworker\'',
|
|
177
177
|
media: {
|
|
@@ -180,11 +180,11 @@ const walkthroughs = [
|
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
id: 'findLanguageExtensions',
|
|
183
|
-
title: ( localize(
|
|
183
|
+
title: ( localize(7207, "Rich support for all your languages")),
|
|
184
184
|
description: ( localize(
|
|
185
|
-
|
|
185
|
+
7208,
|
|
186
186
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
187
|
-
Button(( localize(
|
|
187
|
+
Button(( localize(7209, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
188
188
|
)),
|
|
189
189
|
when: 'workspacePlatform != \'webworker\'',
|
|
190
190
|
media: {
|
|
@@ -193,11 +193,11 @@ const walkthroughs = [
|
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
195
|
id: 'settings',
|
|
196
|
-
title: ( localize(
|
|
196
|
+
title: ( localize(7210, "Tune your settings")),
|
|
197
197
|
description: ( localize(
|
|
198
|
-
|
|
198
|
+
7211,
|
|
199
199
|
"Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
|
|
200
|
-
Button(( localize(
|
|
200
|
+
Button(( localize(7212, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
201
201
|
)),
|
|
202
202
|
media: {
|
|
203
203
|
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
@@ -205,11 +205,11 @@ const walkthroughs = [
|
|
|
205
205
|
},
|
|
206
206
|
{
|
|
207
207
|
id: 'settingsSync',
|
|
208
|
-
title: ( localize(
|
|
208
|
+
title: ( localize(7213, "Sync settings across devices")),
|
|
209
209
|
description: ( localize(
|
|
210
|
-
|
|
210
|
+
7214,
|
|
211
211
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
212
|
-
Button(( localize(
|
|
212
|
+
Button(( localize(7215, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
213
213
|
)),
|
|
214
214
|
when: 'syncStatus != uninitialized',
|
|
215
215
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -219,21 +219,21 @@ const walkthroughs = [
|
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
id: 'commandPaletteTask',
|
|
222
|
-
title: ( localize(
|
|
222
|
+
title: ( localize(7216, "Unlock productivity with the Command Palette ")),
|
|
223
223
|
description: ( localize(
|
|
224
|
-
|
|
224
|
+
7217,
|
|
225
225
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
226
|
-
Button(( localize(
|
|
226
|
+
Button(( localize(7218, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
227
227
|
)),
|
|
228
228
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
231
|
id: 'pickAFolderTask-Mac',
|
|
232
|
-
title: ( localize(
|
|
232
|
+
title: ( localize(7219, "Open up your code")),
|
|
233
233
|
description: ( localize(
|
|
234
|
-
|
|
234
|
+
7220,
|
|
235
235
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
236
|
-
Button(( localize(
|
|
236
|
+
Button(( localize(7221, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
|
|
237
237
|
)),
|
|
238
238
|
when: 'isMac && workspaceFolderCount == 0',
|
|
239
239
|
media: {
|
|
@@ -242,11 +242,11 @@ const walkthroughs = [
|
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
id: 'pickAFolderTask-Other',
|
|
245
|
-
title: ( localize(
|
|
245
|
+
title: ( localize(7219, "Open up your code")),
|
|
246
246
|
description: ( localize(
|
|
247
|
-
|
|
247
|
+
7220,
|
|
248
248
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
249
|
-
Button(( localize(
|
|
249
|
+
Button(( localize(7221, "Pick a Folder")), 'command:workbench.action.files.openFolder')
|
|
250
250
|
)),
|
|
251
251
|
when: '!isMac && workspaceFolderCount == 0',
|
|
252
252
|
media: {
|
|
@@ -255,11 +255,11 @@ const walkthroughs = [
|
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
id: 'quickOpen',
|
|
258
|
-
title: ( localize(
|
|
258
|
+
title: ( localize(7222, "Quickly navigate between your files")),
|
|
259
259
|
description: ( localize(
|
|
260
|
-
|
|
260
|
+
7223,
|
|
261
261
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
262
|
-
Button(( localize(
|
|
262
|
+
Button(( localize(7224, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
263
263
|
)),
|
|
264
264
|
when: 'workspaceFolderCount != 0',
|
|
265
265
|
media: {
|
|
@@ -268,11 +268,11 @@ const walkthroughs = [
|
|
|
268
268
|
},
|
|
269
269
|
{
|
|
270
270
|
id: 'videoTutorial',
|
|
271
|
-
title: ( localize(
|
|
271
|
+
title: ( localize(7225, "Watch video tutorials")),
|
|
272
272
|
description: ( localize(
|
|
273
|
-
|
|
273
|
+
7226,
|
|
274
274
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
275
|
-
Button(( localize(
|
|
275
|
+
Button(( localize(7227, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
276
276
|
)),
|
|
277
277
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
278
278
|
}
|
|
@@ -281,23 +281,23 @@ const walkthroughs = [
|
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
id: 'SetupWeb',
|
|
284
|
-
title: ( localize(
|
|
285
|
-
description: ( localize(
|
|
284
|
+
title: ( localize(7228, "Get Started with VS Code for the Web")),
|
|
285
|
+
description: ( localize(7229, "Customize your editor, learn the basics, and start coding")),
|
|
286
286
|
isFeatured: true,
|
|
287
287
|
icon: setupIcon,
|
|
288
288
|
when: 'isWeb',
|
|
289
289
|
next: 'Beginner',
|
|
290
|
-
walkthroughPageTitle: ( localize(
|
|
290
|
+
walkthroughPageTitle: ( localize(7230, 'Setup VS Code Web')),
|
|
291
291
|
content: {
|
|
292
292
|
type: 'steps',
|
|
293
293
|
steps: [
|
|
294
294
|
{
|
|
295
295
|
id: 'pickColorThemeWeb',
|
|
296
|
-
title: ( localize(
|
|
296
|
+
title: ( localize(7201, "Choose your theme")),
|
|
297
297
|
description: ( localize(
|
|
298
|
-
|
|
298
|
+
7202,
|
|
299
299
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
300
|
-
Button(( localize(
|
|
300
|
+
Button(( localize(7203, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
301
301
|
)),
|
|
302
302
|
completionEvents: [
|
|
303
303
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -307,11 +307,11 @@ const walkthroughs = [
|
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
id: 'menuBarWeb',
|
|
310
|
-
title: ( localize(
|
|
310
|
+
title: ( localize(7231, "Just the right amount of UI")),
|
|
311
311
|
description: ( localize(
|
|
312
|
-
|
|
312
|
+
7232,
|
|
313
313
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
314
|
-
Button(( localize(
|
|
314
|
+
Button(( localize(7233, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
315
315
|
)),
|
|
316
316
|
when: 'isWeb',
|
|
317
317
|
media: {
|
|
@@ -320,11 +320,11 @@ const walkthroughs = [
|
|
|
320
320
|
},
|
|
321
321
|
{
|
|
322
322
|
id: 'extensionsWebWeb',
|
|
323
|
-
title: ( localize(
|
|
323
|
+
title: ( localize(7204, "Code with extensions")),
|
|
324
324
|
description: ( localize(
|
|
325
|
-
|
|
325
|
+
7205,
|
|
326
326
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
327
|
-
Button(( localize(
|
|
327
|
+
Button(( localize(7206, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
328
328
|
)),
|
|
329
329
|
when: 'workspacePlatform == \'webworker\'',
|
|
330
330
|
media: {
|
|
@@ -333,11 +333,11 @@ const walkthroughs = [
|
|
|
333
333
|
},
|
|
334
334
|
{
|
|
335
335
|
id: 'findLanguageExtensionsWeb',
|
|
336
|
-
title: ( localize(
|
|
336
|
+
title: ( localize(7207, "Rich support for all your languages")),
|
|
337
337
|
description: ( localize(
|
|
338
|
-
|
|
338
|
+
7208,
|
|
339
339
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
340
|
-
Button(( localize(
|
|
340
|
+
Button(( localize(7209, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
341
341
|
)),
|
|
342
342
|
when: 'workspacePlatform != \'webworker\'',
|
|
343
343
|
media: {
|
|
@@ -346,11 +346,11 @@ const walkthroughs = [
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
id: 'settingsSyncWeb',
|
|
349
|
-
title: ( localize(
|
|
349
|
+
title: ( localize(7213, "Sync settings across devices")),
|
|
350
350
|
description: ( localize(
|
|
351
|
-
|
|
351
|
+
7214,
|
|
352
352
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
353
|
-
Button(( localize(
|
|
353
|
+
Button(( localize(7215, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
354
354
|
)),
|
|
355
355
|
when: 'syncStatus != uninitialized',
|
|
356
356
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -360,22 +360,22 @@ const walkthroughs = [
|
|
|
360
360
|
},
|
|
361
361
|
{
|
|
362
362
|
id: 'commandPaletteTaskWeb',
|
|
363
|
-
title: ( localize(
|
|
363
|
+
title: ( localize(7216, "Unlock productivity with the Command Palette ")),
|
|
364
364
|
description: ( localize(
|
|
365
|
-
|
|
365
|
+
7217,
|
|
366
366
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
367
|
-
Button(( localize(
|
|
367
|
+
Button(( localize(7218, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
368
368
|
)),
|
|
369
369
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
id: 'pickAFolderTask-WebWeb',
|
|
373
|
-
title: ( localize(
|
|
373
|
+
title: ( localize(7219, "Open up your code")),
|
|
374
374
|
description: ( localize(
|
|
375
|
-
|
|
375
|
+
7234,
|
|
376
376
|
"You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}",
|
|
377
|
-
Button(( localize(
|
|
378
|
-
Button(( localize(
|
|
377
|
+
Button(( localize(7235, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
378
|
+
Button(( localize(7236, "Open Repository")), 'command:remoteHub.openRepository')
|
|
379
379
|
)),
|
|
380
380
|
when: 'workspaceFolderCount == 0',
|
|
381
381
|
media: {
|
|
@@ -384,11 +384,11 @@ const walkthroughs = [
|
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
id: 'quickOpenWeb',
|
|
387
|
-
title: ( localize(
|
|
387
|
+
title: ( localize(7222, "Quickly navigate between your files")),
|
|
388
388
|
description: ( localize(
|
|
389
|
-
|
|
389
|
+
7223,
|
|
390
390
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
391
|
-
Button(( localize(
|
|
391
|
+
Button(( localize(7224, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
392
392
|
)),
|
|
393
393
|
when: 'workspaceFolderCount != 0',
|
|
394
394
|
media: {
|
|
@@ -400,26 +400,26 @@ const walkthroughs = [
|
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
402
|
id: 'SetupAccessibility',
|
|
403
|
-
title: ( localize(
|
|
403
|
+
title: ( localize(7237, "Get Started with Accessibility Features")),
|
|
404
404
|
description: ( localize(
|
|
405
|
-
|
|
405
|
+
7238,
|
|
406
406
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
407
407
|
)),
|
|
408
408
|
isFeatured: true,
|
|
409
409
|
icon: setupIcon,
|
|
410
410
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
411
411
|
next: 'Setup',
|
|
412
|
-
walkthroughPageTitle: ( localize(
|
|
412
|
+
walkthroughPageTitle: ( localize(7239, 'Setup VS Code Accessibility')),
|
|
413
413
|
content: {
|
|
414
414
|
type: 'steps',
|
|
415
415
|
steps: [
|
|
416
416
|
{
|
|
417
417
|
id: 'accessibilityHelp',
|
|
418
|
-
title: ( localize(
|
|
418
|
+
title: ( localize(7240, "Use the accessibility help dialog to learn about features")),
|
|
419
419
|
description: ( localize(
|
|
420
|
-
|
|
420
|
+
7241,
|
|
421
421
|
"The accessibility help dialog provides information about what to expect from a feature and the commands/keybindings to operate them.\n With focus in an editor, terminal, notebook, chat response, comment, or debug console, the relevant dialog can be opened with the Open Accessibility Help command.\n{0}",
|
|
422
|
-
Button(( localize(
|
|
422
|
+
Button(( localize(7242, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
423
423
|
)),
|
|
424
424
|
media: {
|
|
425
425
|
type: 'markdown', path: 'empty'
|
|
@@ -428,13 +428,13 @@ const walkthroughs = [
|
|
|
428
428
|
{
|
|
429
429
|
id: 'accessibleView',
|
|
430
430
|
title: ( localize(
|
|
431
|
-
|
|
431
|
+
7243,
|
|
432
432
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
433
433
|
)),
|
|
434
434
|
description: ( localize(
|
|
435
|
-
|
|
435
|
+
7244,
|
|
436
436
|
"The accessible view is available for the terminal, hovers, notifications, comments, notebook output, chat responses, inline completions, and debug console output.\n With focus in any of those features, it can be opened with the Open Accessible View command.\n{0}",
|
|
437
|
-
Button(( localize(
|
|
437
|
+
Button(( localize(7245, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
438
438
|
)),
|
|
439
439
|
media: {
|
|
440
440
|
type: 'markdown', path: 'empty'
|
|
@@ -442,11 +442,11 @@ const walkthroughs = [
|
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
444
|
id: 'verbositySettings',
|
|
445
|
-
title: ( localize(
|
|
445
|
+
title: ( localize(7246, "Control the verbosity of aria labels")),
|
|
446
446
|
description: ( localize(
|
|
447
|
-
|
|
447
|
+
7247,
|
|
448
448
|
"Screen reader verbosity settings exist for features around the workbench so that once a user is familiar with a feature, they can avoid hearing hints about how to operate it. For example, features for which an accessibility help dialog exists will indicate how to open the dialog until the verbosity setting for that feature has been disabled.\n These and other accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
449
|
-
Button(( localize(
|
|
449
|
+
Button(( localize(7248, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
450
450
|
)),
|
|
451
451
|
media: {
|
|
452
452
|
type: 'markdown', path: 'empty'
|
|
@@ -454,21 +454,21 @@ const walkthroughs = [
|
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
456
|
id: 'commandPaletteTaskAccessibility',
|
|
457
|
-
title: ( localize(
|
|
457
|
+
title: ( localize(7249, "Unlock productivity with the Command Palette ")),
|
|
458
458
|
description: ( localize(
|
|
459
|
-
|
|
459
|
+
7250,
|
|
460
460
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
461
|
-
Button(( localize(
|
|
461
|
+
Button(( localize(7218, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
462
462
|
)),
|
|
463
463
|
media: { type: 'markdown', path: 'empty' },
|
|
464
464
|
},
|
|
465
465
|
{
|
|
466
466
|
id: 'keybindingsAccessibility',
|
|
467
|
-
title: ( localize(
|
|
467
|
+
title: ( localize(7251, "Customize your keyboard shortcuts")),
|
|
468
468
|
description: ( localize(
|
|
469
|
-
|
|
469
|
+
7252,
|
|
470
470
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
471
|
-
Button(( localize(
|
|
471
|
+
Button(( localize(7253, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
472
472
|
)),
|
|
473
473
|
media: {
|
|
474
474
|
type: 'markdown', path: 'empty',
|
|
@@ -477,14 +477,14 @@ const walkthroughs = [
|
|
|
477
477
|
{
|
|
478
478
|
id: 'accessibilitySignals',
|
|
479
479
|
title: ( localize(
|
|
480
|
-
|
|
480
|
+
7254,
|
|
481
481
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
482
482
|
)),
|
|
483
483
|
description: ( localize(
|
|
484
|
-
|
|
484
|
+
7255,
|
|
485
485
|
"Accessibility sounds and announcements are played around the workbench for different events.\n These can be discovered and configured using the List Signal Sounds and List Signal Announcements commands.\n{0}\n{1}",
|
|
486
|
-
Button(( localize(
|
|
487
|
-
Button(( localize(
|
|
486
|
+
Button(( localize(7256, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
487
|
+
Button(( localize(7257, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
488
488
|
)),
|
|
489
489
|
media: {
|
|
490
490
|
type: 'markdown', path: 'empty'
|
|
@@ -493,13 +493,13 @@ const walkthroughs = [
|
|
|
493
493
|
{
|
|
494
494
|
id: 'hover',
|
|
495
495
|
title: ( localize(
|
|
496
|
-
|
|
496
|
+
7258,
|
|
497
497
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
498
498
|
)),
|
|
499
499
|
description: ( localize(
|
|
500
|
-
|
|
500
|
+
7259,
|
|
501
501
|
"While focus is in the editor on a variable or symbol, a hover can be can be focused with the Show or Open Hover command.\n{0}",
|
|
502
|
-
Button(( localize(
|
|
502
|
+
Button(( localize(7260, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
503
503
|
)),
|
|
504
504
|
media: {
|
|
505
505
|
type: 'markdown', path: 'empty'
|
|
@@ -507,11 +507,11 @@ const walkthroughs = [
|
|
|
507
507
|
},
|
|
508
508
|
{
|
|
509
509
|
id: 'goToSymbol',
|
|
510
|
-
title: ( localize(
|
|
510
|
+
title: ( localize(7261, "Navigate to symbols in a file")),
|
|
511
511
|
description: ( localize(
|
|
512
|
-
|
|
512
|
+
7262,
|
|
513
513
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
514
|
-
Button(( localize(
|
|
514
|
+
Button(( localize(7263, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
515
515
|
)),
|
|
516
516
|
media: {
|
|
517
517
|
type: 'markdown', path: 'empty'
|
|
@@ -520,14 +520,14 @@ const walkthroughs = [
|
|
|
520
520
|
{
|
|
521
521
|
id: 'codeFolding',
|
|
522
522
|
title: ( localize(
|
|
523
|
-
|
|
523
|
+
7264,
|
|
524
524
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
525
525
|
)),
|
|
526
526
|
description: ( localize(
|
|
527
|
-
|
|
527
|
+
7265,
|
|
528
528
|
"Fold or unfold a code section with the Toggle Fold command.\n{0}\n Fold or unfold recursively with the Toggle Fold Recursively Command\n{1}\n",
|
|
529
|
-
Button(( localize(
|
|
530
|
-
Button(( localize(
|
|
529
|
+
Button(( localize(7266, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
530
|
+
Button(( localize(7267, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
531
531
|
)),
|
|
532
532
|
media: {
|
|
533
533
|
type: 'markdown', path: 'empty'
|
|
@@ -535,12 +535,12 @@ const walkthroughs = [
|
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
id: 'intellisense',
|
|
538
|
-
title: ( localize(
|
|
538
|
+
title: ( localize(7268, "Use Intellisense to improve coding efficiency")),
|
|
539
539
|
description: ( localize(
|
|
540
|
-
|
|
540
|
+
7269,
|
|
541
541
|
"Intellisense suggestions can be opened with the Trigger Intellisense command.\n{0}\n Inline intellisense suggestions can be triggered with Trigger Inline Suggestion\n{1}\n Useful settings include editor.inlineCompletionsAccessibilityVerbose and editor.screenReaderAnnounceInlineSuggestion.",
|
|
542
|
-
Button(( localize(
|
|
543
|
-
Button(( localize(
|
|
542
|
+
Button(( localize(7270, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
543
|
+
Button(( localize(7271, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
544
544
|
)),
|
|
545
545
|
media: {
|
|
546
546
|
type: 'markdown', path: 'empty'
|
|
@@ -548,11 +548,11 @@ const walkthroughs = [
|
|
|
548
548
|
},
|
|
549
549
|
{
|
|
550
550
|
id: 'accessibilitySettings',
|
|
551
|
-
title: ( localize(
|
|
551
|
+
title: ( localize(7272, "Configure accessibility settings")),
|
|
552
552
|
description: ( localize(
|
|
553
|
-
|
|
553
|
+
7273,
|
|
554
554
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
555
|
+
Button(( localize(7274, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
556
556
|
)),
|
|
557
557
|
media: { type: 'markdown', path: 'empty' }
|
|
558
558
|
}
|
|
@@ -562,20 +562,20 @@ const walkthroughs = [
|
|
|
562
562
|
{
|
|
563
563
|
id: 'Beginner',
|
|
564
564
|
isFeatured: false,
|
|
565
|
-
title: ( localize(
|
|
565
|
+
title: ( localize(7275, "Learn the Fundamentals")),
|
|
566
566
|
icon: beginnerIcon,
|
|
567
|
-
description: ( localize(
|
|
568
|
-
walkthroughPageTitle: ( localize(
|
|
567
|
+
description: ( localize(7276, "Get an overview of the most essential features")),
|
|
568
|
+
walkthroughPageTitle: ( localize(7277, 'Essential Features')),
|
|
569
569
|
content: {
|
|
570
570
|
type: 'steps',
|
|
571
571
|
steps: [
|
|
572
572
|
{
|
|
573
573
|
id: 'extensions',
|
|
574
|
-
title: ( localize(
|
|
574
|
+
title: ( localize(7204, "Code with extensions")),
|
|
575
575
|
description: ( localize(
|
|
576
|
-
|
|
576
|
+
7278,
|
|
577
577
|
"Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}",
|
|
578
|
-
Button(( localize(
|
|
578
|
+
Button(( localize(7279, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
579
579
|
)),
|
|
580
580
|
when: 'workspacePlatform != \'webworker\'',
|
|
581
581
|
media: {
|
|
@@ -584,11 +584,11 @@ const walkthroughs = [
|
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
id: 'terminal',
|
|
587
|
-
title: ( localize(
|
|
587
|
+
title: ( localize(7280, "Built-in terminal")),
|
|
588
588
|
description: ( localize(
|
|
589
|
-
|
|
589
|
+
7281,
|
|
590
590
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
591
|
-
Button(( localize(
|
|
591
|
+
Button(( localize(7282, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
592
592
|
)),
|
|
593
593
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
594
594
|
media: {
|
|
@@ -597,11 +597,11 @@ const walkthroughs = [
|
|
|
597
597
|
},
|
|
598
598
|
{
|
|
599
599
|
id: 'debugging',
|
|
600
|
-
title: ( localize(
|
|
600
|
+
title: ( localize(7283, "Watch your code in action")),
|
|
601
601
|
description: ( localize(
|
|
602
|
-
|
|
602
|
+
7284,
|
|
603
603
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
604
|
-
Button(( localize(
|
|
604
|
+
Button(( localize(7285, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
605
605
|
)),
|
|
606
606
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
607
607
|
media: {
|
|
@@ -610,11 +610,11 @@ const walkthroughs = [
|
|
|
610
610
|
},
|
|
611
611
|
{
|
|
612
612
|
id: 'scmClone',
|
|
613
|
-
title: ( localize(
|
|
613
|
+
title: ( localize(7286, "Track your code with Git")),
|
|
614
614
|
description: ( localize(
|
|
615
|
-
|
|
615
|
+
7287,
|
|
616
616
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
617
|
-
Button(( localize(
|
|
617
|
+
Button(( localize(7288, "Clone Repository")), 'command:git.clone')
|
|
618
618
|
)),
|
|
619
619
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
620
620
|
media: {
|
|
@@ -623,11 +623,11 @@ const walkthroughs = [
|
|
|
623
623
|
},
|
|
624
624
|
{
|
|
625
625
|
id: 'scmSetup',
|
|
626
|
-
title: ( localize(
|
|
626
|
+
title: ( localize(7286, "Track your code with Git")),
|
|
627
627
|
description: ( localize(
|
|
628
|
-
|
|
628
|
+
7289,
|
|
629
629
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
630
|
-
Button(( localize(
|
|
630
|
+
Button(( localize(7290, "Initialize Git Repository")), 'command:git.init')
|
|
631
631
|
)),
|
|
632
632
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
633
633
|
media: {
|
|
@@ -636,11 +636,11 @@ const walkthroughs = [
|
|
|
636
636
|
},
|
|
637
637
|
{
|
|
638
638
|
id: 'scm',
|
|
639
|
-
title: ( localize(
|
|
639
|
+
title: ( localize(7286, "Track your code with Git")),
|
|
640
640
|
description: ( localize(
|
|
641
|
-
|
|
641
|
+
7291,
|
|
642
642
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
643
|
-
Button(( localize(
|
|
643
|
+
Button(( localize(7292, "Open Source Control")), 'command:workbench.view.scm')
|
|
644
644
|
)),
|
|
645
645
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
646
646
|
media: {
|
|
@@ -649,11 +649,11 @@ const walkthroughs = [
|
|
|
649
649
|
},
|
|
650
650
|
{
|
|
651
651
|
id: 'installGit',
|
|
652
|
-
title: ( localize(
|
|
652
|
+
title: ( localize(7293, "Install Git")),
|
|
653
653
|
description: ( localize(
|
|
654
|
-
|
|
654
|
+
7294,
|
|
655
655
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
656
|
-
Button(( localize(
|
|
656
|
+
Button(( localize(7295, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
657
657
|
'[',
|
|
658
658
|
'](command:workbench.action.reloadWindow)'
|
|
659
659
|
)),
|
|
@@ -667,12 +667,12 @@ const walkthroughs = [
|
|
|
667
667
|
},
|
|
668
668
|
{
|
|
669
669
|
id: 'tasks',
|
|
670
|
-
title: ( localize(
|
|
670
|
+
title: ( localize(7296, "Automate your project tasks")),
|
|
671
671
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
672
672
|
description: ( localize(
|
|
673
|
-
|
|
673
|
+
7297,
|
|
674
674
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
675
|
-
Button(( localize(
|
|
675
|
+
Button(( localize(7298, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
676
676
|
)),
|
|
677
677
|
media: {
|
|
678
678
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -680,11 +680,11 @@ const walkthroughs = [
|
|
|
680
680
|
},
|
|
681
681
|
{
|
|
682
682
|
id: 'shortcuts',
|
|
683
|
-
title: ( localize(
|
|
683
|
+
title: ( localize(7299, "Customize your shortcuts")),
|
|
684
684
|
description: ( localize(
|
|
685
|
-
|
|
685
|
+
7300,
|
|
686
686
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
687
|
-
Button(( localize(
|
|
687
|
+
Button(( localize(7253, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
688
688
|
)),
|
|
689
689
|
media: {
|
|
690
690
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -692,12 +692,12 @@ const walkthroughs = [
|
|
|
692
692
|
},
|
|
693
693
|
{
|
|
694
694
|
id: 'workspaceTrust',
|
|
695
|
-
title: ( localize(
|
|
695
|
+
title: ( localize(7301, "Safely browse and edit code")),
|
|
696
696
|
description: ( localize(
|
|
697
|
-
|
|
697
|
+
7302,
|
|
698
698
|
"{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.",
|
|
699
|
-
Button(( localize(
|
|
700
|
-
Button(( localize(
|
|
699
|
+
Button(( localize(7303, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
700
|
+
Button(( localize(7304, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
701
701
|
)),
|
|
702
702
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
703
703
|
media: {
|
|
@@ -709,20 +709,20 @@ const walkthroughs = [
|
|
|
709
709
|
},
|
|
710
710
|
{
|
|
711
711
|
id: 'notebooks',
|
|
712
|
-
title: ( localize(
|
|
712
|
+
title: ( localize(7305, "Customize Notebooks")),
|
|
713
713
|
description: '',
|
|
714
714
|
icon: setupIcon,
|
|
715
715
|
isFeatured: false,
|
|
716
716
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
717
|
-
walkthroughPageTitle: ( localize(
|
|
717
|
+
walkthroughPageTitle: ( localize(7306, 'Notebooks')),
|
|
718
718
|
content: {
|
|
719
719
|
type: 'steps',
|
|
720
720
|
steps: [
|
|
721
721
|
{
|
|
722
722
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
723
723
|
id: 'notebookProfile',
|
|
724
|
-
title: ( localize(
|
|
725
|
-
description: ( localize(
|
|
724
|
+
title: ( localize(7307, "Select the layout for your notebooks")),
|
|
725
|
+
description: ( localize(7308, "Get notebooks to feel just the way you prefer")),
|
|
726
726
|
when: 'userHasOpenedNotebook',
|
|
727
727
|
media: {
|
|
728
728
|
type: 'markdown', path: 'notebookProfile'
|