@codingame/monaco-vscode-walkthrough-service-override 10.0.2 → 10.1.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 +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 +155 -155
- 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(7403, "Icon used for the setup category of welcome page")));
|
|
25
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7404, "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(7405, "New File...")),
|
|
30
|
+
description: ( localize(7406, "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(7407, "Open...")),
|
|
40
|
+
description: ( localize(7408, "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(7409, "Open File...")),
|
|
51
|
+
description: ( localize(7410, "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(7411, "Open Folder...")),
|
|
62
|
+
description: ( localize(7412, "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(7411, "Open Folder...")),
|
|
73
|
+
description: ( localize(7412, "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(7413, "Clone Git Repository...")),
|
|
84
|
+
description: ( localize(7414, "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(7415, "Open Repository...")),
|
|
95
95
|
description: ( localize(
|
|
96
|
-
|
|
96
|
+
7416,
|
|
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(7417, "Open a Walkthrough...")),
|
|
109
|
+
description: ( localize(7418, "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(7419, "Connect to...")),
|
|
120
|
+
description: ( localize(7420, "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(7421, "Open Tunnel...")),
|
|
131
|
+
description: ( localize(7422, "Connect to a remote machine through a Tunnel")),
|
|
132
132
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
133
133
|
icon: Codicon.remote,
|
|
134
134
|
content: {
|
|
@@ -141,8 +141,8 @@ 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(7423, "Get Started with VS Code")),
|
|
145
|
+
description: ( localize(7424, "Customize your editor, learn the basics, and start coding")),
|
|
146
146
|
isFeatured: true,
|
|
147
147
|
icon: setupIcon,
|
|
148
148
|
when: '!isWeb',
|
|
@@ -152,11 +152,11 @@ const walkthroughs = [
|
|
|
152
152
|
steps: [
|
|
153
153
|
{
|
|
154
154
|
id: 'pickColorTheme',
|
|
155
|
-
title: ( localize(
|
|
155
|
+
title: ( localize(7425, "Choose your theme")),
|
|
156
156
|
description: ( localize(
|
|
157
|
-
|
|
157
|
+
7426,
|
|
158
158
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
159
|
-
Button(( localize(
|
|
159
|
+
Button(( localize(7427, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
160
160
|
)),
|
|
161
161
|
completionEvents: [
|
|
162
162
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -166,11 +166,11 @@ const walkthroughs = [
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
id: 'extensionsWeb',
|
|
169
|
-
title: ( localize(
|
|
169
|
+
title: ( localize(7428, "Code with extensions")),
|
|
170
170
|
description: ( localize(
|
|
171
|
-
|
|
171
|
+
7429,
|
|
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(7430, "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(7431, "Rich support for all your languages")),
|
|
183
183
|
description: ( localize(
|
|
184
|
-
|
|
184
|
+
7432,
|
|
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(7433, "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(7434, "Tune your settings")),
|
|
196
196
|
description: ( localize(
|
|
197
|
-
|
|
197
|
+
7435,
|
|
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(7436, "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(7437, "Sync settings across devices")),
|
|
208
208
|
description: ( localize(
|
|
209
|
-
|
|
209
|
+
7438,
|
|
210
210
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
211
|
-
Button(( localize(
|
|
211
|
+
Button(( localize(7439, "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(7440, "Unlock productivity with the Command Palette ")),
|
|
222
222
|
description: ( localize(
|
|
223
|
-
|
|
223
|
+
7441,
|
|
224
224
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
225
|
-
Button(( localize(
|
|
225
|
+
Button(( localize(7442, "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(7443, "Open up your code")),
|
|
232
232
|
description: ( localize(
|
|
233
|
-
|
|
233
|
+
7444,
|
|
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(7445, "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(7443, "Open up your code")),
|
|
245
245
|
description: ( localize(
|
|
246
|
-
|
|
246
|
+
7444,
|
|
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(7445, "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(7446, "Quickly navigate between your files")),
|
|
258
258
|
description: ( localize(
|
|
259
|
-
|
|
259
|
+
7447,
|
|
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(7448, "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(7449, "Watch video tutorials")),
|
|
271
271
|
description: ( localize(
|
|
272
|
-
|
|
272
|
+
7450,
|
|
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(7451, "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(7452, "Get Started with VS Code for the Web")),
|
|
284
|
+
description: ( localize(7453, "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(7425, "Choose your theme")),
|
|
295
295
|
description: ( localize(
|
|
296
|
-
|
|
296
|
+
7426,
|
|
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(7427, "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(7454, "Just the right amount of UI")),
|
|
309
309
|
description: ( localize(
|
|
310
|
-
|
|
310
|
+
7455,
|
|
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(7456, "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(7428, "Code with extensions")),
|
|
322
322
|
description: ( localize(
|
|
323
|
-
|
|
323
|
+
7429,
|
|
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(7430, "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(7431, "Rich support for all your languages")),
|
|
335
335
|
description: ( localize(
|
|
336
|
-
|
|
336
|
+
7432,
|
|
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(7433, "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(7437, "Sync settings across devices")),
|
|
348
348
|
description: ( localize(
|
|
349
|
-
|
|
349
|
+
7438,
|
|
350
350
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
351
|
-
Button(( localize(
|
|
351
|
+
Button(( localize(7439, "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(7440, "Unlock productivity with the Command Palette ")),
|
|
362
362
|
description: ( localize(
|
|
363
|
-
|
|
363
|
+
7441,
|
|
364
364
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
365
|
-
Button(( localize(
|
|
365
|
+
Button(( localize(7442, "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(7443, "Open up your code")),
|
|
372
372
|
description: ( localize(
|
|
373
|
-
|
|
373
|
+
7457,
|
|
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(7458, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
376
|
+
Button(( localize(7459, "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(7446, "Quickly navigate between your files")),
|
|
386
386
|
description: ( localize(
|
|
387
|
-
|
|
387
|
+
7447,
|
|
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(7448, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
390
390
|
)),
|
|
391
391
|
when: 'workspaceFolderCount != 0',
|
|
392
392
|
media: {
|
|
@@ -398,9 +398,9 @@ const walkthroughs = [
|
|
|
398
398
|
},
|
|
399
399
|
{
|
|
400
400
|
id: 'SetupAccessibility',
|
|
401
|
-
title: ( localize(
|
|
401
|
+
title: ( localize(7460, "Get Started with Accessibility Features")),
|
|
402
402
|
description: ( localize(
|
|
403
|
-
|
|
403
|
+
7461,
|
|
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(7462, "Use the accessibility help dialog to learn about features")),
|
|
416
416
|
description: ( localize(
|
|
417
|
-
|
|
417
|
+
7463,
|
|
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(7464, "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
|
-
|
|
428
|
+
7465,
|
|
429
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
|
+
7466,
|
|
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(7467, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
435
435
|
)),
|
|
436
436
|
media: {
|
|
437
437
|
type: 'markdown', path: 'empty'
|
|
@@ -439,11 +439,11 @@ const walkthroughs = [
|
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
441
|
id: 'verbositySettings',
|
|
442
|
-
title: ( localize(
|
|
442
|
+
title: ( localize(7468, "Control the verbosity of aria labels")),
|
|
443
443
|
description: ( localize(
|
|
444
|
-
|
|
444
|
+
7469,
|
|
445
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(
|
|
446
|
+
Button(( localize(7470, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
447
447
|
)),
|
|
448
448
|
media: {
|
|
449
449
|
type: 'markdown', path: 'empty'
|
|
@@ -451,21 +451,21 @@ const walkthroughs = [
|
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
id: 'commandPaletteTaskAccessibility',
|
|
454
|
-
title: ( localize(
|
|
454
|
+
title: ( localize(7471, "Unlock productivity with the Command Palette ")),
|
|
455
455
|
description: ( localize(
|
|
456
|
-
|
|
456
|
+
7472,
|
|
457
457
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
458
|
-
Button(( localize(
|
|
458
|
+
Button(( localize(7442, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
459
459
|
)),
|
|
460
460
|
media: { type: 'markdown', path: 'empty' },
|
|
461
461
|
},
|
|
462
462
|
{
|
|
463
463
|
id: 'keybindingsAccessibility',
|
|
464
|
-
title: ( localize(
|
|
464
|
+
title: ( localize(7473, "Customize your keyboard shortcuts")),
|
|
465
465
|
description: ( localize(
|
|
466
|
-
|
|
466
|
+
7474,
|
|
467
467
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
468
|
-
Button(( localize(
|
|
468
|
+
Button(( localize(7475, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
469
469
|
)),
|
|
470
470
|
media: {
|
|
471
471
|
type: 'markdown', path: 'empty',
|
|
@@ -474,14 +474,14 @@ const walkthroughs = [
|
|
|
474
474
|
{
|
|
475
475
|
id: 'accessibilitySignals',
|
|
476
476
|
title: ( localize(
|
|
477
|
-
|
|
477
|
+
7476,
|
|
478
478
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
479
479
|
)),
|
|
480
480
|
description: ( localize(
|
|
481
|
-
|
|
481
|
+
7477,
|
|
482
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}",
|
|
483
|
-
Button(( localize(
|
|
484
|
-
Button(( localize(
|
|
483
|
+
Button(( localize(7478, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
484
|
+
Button(( localize(7479, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
485
485
|
)),
|
|
486
486
|
media: {
|
|
487
487
|
type: 'markdown', path: 'empty'
|
|
@@ -490,13 +490,13 @@ const walkthroughs = [
|
|
|
490
490
|
{
|
|
491
491
|
id: 'hover',
|
|
492
492
|
title: ( localize(
|
|
493
|
-
|
|
493
|
+
7480,
|
|
494
494
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
495
495
|
)),
|
|
496
496
|
description: ( localize(
|
|
497
|
-
|
|
497
|
+
7481,
|
|
498
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}",
|
|
499
|
-
Button(( localize(
|
|
499
|
+
Button(( localize(7482, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
500
500
|
)),
|
|
501
501
|
media: {
|
|
502
502
|
type: 'markdown', path: 'empty'
|
|
@@ -504,11 +504,11 @@ const walkthroughs = [
|
|
|
504
504
|
},
|
|
505
505
|
{
|
|
506
506
|
id: 'goToSymbol',
|
|
507
|
-
title: ( localize(
|
|
507
|
+
title: ( localize(7483, "Navigate to symbols in a file")),
|
|
508
508
|
description: ( localize(
|
|
509
|
-
|
|
509
|
+
7484,
|
|
510
510
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
511
|
-
Button(( localize(
|
|
511
|
+
Button(( localize(7485, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
512
512
|
)),
|
|
513
513
|
media: {
|
|
514
514
|
type: 'markdown', path: 'empty'
|
|
@@ -517,14 +517,14 @@ const walkthroughs = [
|
|
|
517
517
|
{
|
|
518
518
|
id: 'codeFolding',
|
|
519
519
|
title: ( localize(
|
|
520
|
-
|
|
520
|
+
7486,
|
|
521
521
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
522
522
|
)),
|
|
523
523
|
description: ( localize(
|
|
524
|
-
|
|
524
|
+
7487,
|
|
525
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",
|
|
526
|
-
Button(( localize(
|
|
527
|
-
Button(( localize(
|
|
526
|
+
Button(( localize(7488, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
527
|
+
Button(( localize(7489, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
528
528
|
)),
|
|
529
529
|
media: {
|
|
530
530
|
type: 'markdown', path: 'empty'
|
|
@@ -532,12 +532,12 @@ const walkthroughs = [
|
|
|
532
532
|
},
|
|
533
533
|
{
|
|
534
534
|
id: 'intellisense',
|
|
535
|
-
title: ( localize(
|
|
535
|
+
title: ( localize(7490, "Use Intellisense to improve coding efficiency")),
|
|
536
536
|
description: ( localize(
|
|
537
|
-
|
|
537
|
+
7491,
|
|
538
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.",
|
|
539
|
-
Button(( localize(
|
|
540
|
-
Button(( localize(
|
|
539
|
+
Button(( localize(7492, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
540
|
+
Button(( localize(7493, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
541
541
|
)),
|
|
542
542
|
media: {
|
|
543
543
|
type: 'markdown', path: 'empty'
|
|
@@ -545,11 +545,11 @@ const walkthroughs = [
|
|
|
545
545
|
},
|
|
546
546
|
{
|
|
547
547
|
id: 'accessibilitySettings',
|
|
548
|
-
title: ( localize(
|
|
548
|
+
title: ( localize(7494, "Configure accessibility settings")),
|
|
549
549
|
description: ( localize(
|
|
550
|
-
|
|
550
|
+
7495,
|
|
551
551
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
552
|
-
Button(( localize(
|
|
552
|
+
Button(( localize(7496, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
553
553
|
)),
|
|
554
554
|
media: { type: 'markdown', path: 'empty' }
|
|
555
555
|
}
|
|
@@ -559,19 +559,19 @@ const walkthroughs = [
|
|
|
559
559
|
{
|
|
560
560
|
id: 'Beginner',
|
|
561
561
|
isFeatured: false,
|
|
562
|
-
title: ( localize(
|
|
562
|
+
title: ( localize(7497, "Learn the Fundamentals")),
|
|
563
563
|
icon: beginnerIcon,
|
|
564
|
-
description: ( localize(
|
|
564
|
+
description: ( localize(7498, "Get an overview of the most essential features")),
|
|
565
565
|
content: {
|
|
566
566
|
type: 'steps',
|
|
567
567
|
steps: [
|
|
568
568
|
{
|
|
569
569
|
id: 'extensions',
|
|
570
|
-
title: ( localize(
|
|
570
|
+
title: ( localize(7428, "Code with extensions")),
|
|
571
571
|
description: ( localize(
|
|
572
|
-
|
|
572
|
+
7499,
|
|
573
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}",
|
|
574
|
-
Button(( localize(
|
|
574
|
+
Button(( localize(7500, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
575
575
|
)),
|
|
576
576
|
when: 'workspacePlatform != \'webworker\'',
|
|
577
577
|
media: {
|
|
@@ -580,11 +580,11 @@ const walkthroughs = [
|
|
|
580
580
|
},
|
|
581
581
|
{
|
|
582
582
|
id: 'terminal',
|
|
583
|
-
title: ( localize(
|
|
583
|
+
title: ( localize(7501, "Built-in terminal")),
|
|
584
584
|
description: ( localize(
|
|
585
|
-
|
|
585
|
+
7502,
|
|
586
586
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
587
|
-
Button(( localize(
|
|
587
|
+
Button(( localize(7503, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
588
588
|
)),
|
|
589
589
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
590
590
|
media: {
|
|
@@ -593,11 +593,11 @@ const walkthroughs = [
|
|
|
593
593
|
},
|
|
594
594
|
{
|
|
595
595
|
id: 'debugging',
|
|
596
|
-
title: ( localize(
|
|
596
|
+
title: ( localize(7504, "Watch your code in action")),
|
|
597
597
|
description: ( localize(
|
|
598
|
-
|
|
598
|
+
7505,
|
|
599
599
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
600
|
-
Button(( localize(
|
|
600
|
+
Button(( localize(7506, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
601
601
|
)),
|
|
602
602
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
603
603
|
media: {
|
|
@@ -606,11 +606,11 @@ const walkthroughs = [
|
|
|
606
606
|
},
|
|
607
607
|
{
|
|
608
608
|
id: 'scmClone',
|
|
609
|
-
title: ( localize(
|
|
609
|
+
title: ( localize(7507, "Track your code with Git")),
|
|
610
610
|
description: ( localize(
|
|
611
|
-
|
|
611
|
+
7508,
|
|
612
612
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
613
|
-
Button(( localize(
|
|
613
|
+
Button(( localize(7509, "Clone Repository")), 'command:git.clone')
|
|
614
614
|
)),
|
|
615
615
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
616
616
|
media: {
|
|
@@ -619,11 +619,11 @@ const walkthroughs = [
|
|
|
619
619
|
},
|
|
620
620
|
{
|
|
621
621
|
id: 'scmSetup',
|
|
622
|
-
title: ( localize(
|
|
622
|
+
title: ( localize(7507, "Track your code with Git")),
|
|
623
623
|
description: ( localize(
|
|
624
|
-
|
|
624
|
+
7510,
|
|
625
625
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
626
|
-
Button(( localize(
|
|
626
|
+
Button(( localize(7511, "Initialize Git Repository")), 'command:git.init')
|
|
627
627
|
)),
|
|
628
628
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
629
629
|
media: {
|
|
@@ -632,11 +632,11 @@ const walkthroughs = [
|
|
|
632
632
|
},
|
|
633
633
|
{
|
|
634
634
|
id: 'scm',
|
|
635
|
-
title: ( localize(
|
|
635
|
+
title: ( localize(7507, "Track your code with Git")),
|
|
636
636
|
description: ( localize(
|
|
637
|
-
|
|
637
|
+
7512,
|
|
638
638
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
639
|
-
Button(( localize(
|
|
639
|
+
Button(( localize(7513, "Open Source Control")), 'command:workbench.view.scm')
|
|
640
640
|
)),
|
|
641
641
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
642
642
|
media: {
|
|
@@ -645,11 +645,11 @@ const walkthroughs = [
|
|
|
645
645
|
},
|
|
646
646
|
{
|
|
647
647
|
id: 'installGit',
|
|
648
|
-
title: ( localize(
|
|
648
|
+
title: ( localize(7514, "Install Git")),
|
|
649
649
|
description: ( localize(
|
|
650
|
-
|
|
650
|
+
7515,
|
|
651
651
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
652
|
-
Button(( localize(
|
|
652
|
+
Button(( localize(7516, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
653
653
|
'[',
|
|
654
654
|
'](command:workbench.action.reloadWindow)'
|
|
655
655
|
)),
|
|
@@ -663,12 +663,12 @@ const walkthroughs = [
|
|
|
663
663
|
},
|
|
664
664
|
{
|
|
665
665
|
id: 'tasks',
|
|
666
|
-
title: ( localize(
|
|
666
|
+
title: ( localize(7517, "Automate your project tasks")),
|
|
667
667
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
668
668
|
description: ( localize(
|
|
669
|
-
|
|
669
|
+
7518,
|
|
670
670
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
671
|
-
Button(( localize(
|
|
671
|
+
Button(( localize(7519, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
672
672
|
)),
|
|
673
673
|
media: {
|
|
674
674
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -676,11 +676,11 @@ const walkthroughs = [
|
|
|
676
676
|
},
|
|
677
677
|
{
|
|
678
678
|
id: 'shortcuts',
|
|
679
|
-
title: ( localize(
|
|
679
|
+
title: ( localize(7520, "Customize your shortcuts")),
|
|
680
680
|
description: ( localize(
|
|
681
|
-
|
|
681
|
+
7521,
|
|
682
682
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
683
|
-
Button(( localize(
|
|
683
|
+
Button(( localize(7475, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
684
684
|
)),
|
|
685
685
|
media: {
|
|
686
686
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -688,12 +688,12 @@ const walkthroughs = [
|
|
|
688
688
|
},
|
|
689
689
|
{
|
|
690
690
|
id: 'workspaceTrust',
|
|
691
|
-
title: ( localize(
|
|
691
|
+
title: ( localize(7522, "Safely browse and edit code")),
|
|
692
692
|
description: ( localize(
|
|
693
|
-
|
|
693
|
+
7523,
|
|
694
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.",
|
|
695
|
-
Button(( localize(
|
|
696
|
-
Button(( localize(
|
|
695
|
+
Button(( localize(7524, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
696
|
+
Button(( localize(7525, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
697
697
|
)),
|
|
698
698
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
699
699
|
media: {
|
|
@@ -705,7 +705,7 @@ const walkthroughs = [
|
|
|
705
705
|
},
|
|
706
706
|
{
|
|
707
707
|
id: 'notebooks',
|
|
708
|
-
title: ( localize(
|
|
708
|
+
title: ( localize(7526, "Customize Notebooks")),
|
|
709
709
|
description: '',
|
|
710
710
|
icon: setupIcon,
|
|
711
711
|
isFeatured: false,
|
|
@@ -716,8 +716,8 @@ const walkthroughs = [
|
|
|
716
716
|
{
|
|
717
717
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
718
718
|
id: 'notebookProfile',
|
|
719
|
-
title: ( localize(
|
|
720
|
-
description: ( localize(
|
|
719
|
+
title: ( localize(7527, "Select the layout for your notebooks")),
|
|
720
|
+
description: ( localize(7528, "Get notebooks to feel just the way you prefer")),
|
|
721
721
|
when: 'userHasOpenedNotebook',
|
|
722
722
|
media: {
|
|
723
723
|
type: 'markdown', path: 'notebookProfile'
|