@codingame/monaco-vscode-walkthrough-service-override 9.0.0 → 9.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +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 +27 -27
- 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 +146 -146
- 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
|
@@ -20,13 +20,13 @@ class GettingStartedContentProviderRegistry {
|
|
|
20
20
|
const gettingStartedContentRegistry = ( (new GettingStartedContentProviderRegistry()));
|
|
21
21
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker', themePickerContent);
|
|
22
22
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
23
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
24
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
23
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7336, "Icon used for the setup category of welcome page")));
|
|
24
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7337, "Icon used for the beginner category of welcome page")));
|
|
25
25
|
const startEntries = [
|
|
26
26
|
{
|
|
27
27
|
id: 'welcome.showNewFileEntries',
|
|
28
|
-
title: ( localize(
|
|
29
|
-
description: ( localize(
|
|
28
|
+
title: ( localize(7338, "New File...")),
|
|
29
|
+
description: ( localize(7339, "Open a new untitled text file, notebook, or custom editor.")),
|
|
30
30
|
icon: Codicon.newFile,
|
|
31
31
|
content: {
|
|
32
32
|
type: 'startEntry',
|
|
@@ -35,8 +35,8 @@ const startEntries = [
|
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
id: 'topLevelOpenMac',
|
|
38
|
-
title: ( localize(
|
|
39
|
-
description: ( localize(
|
|
38
|
+
title: ( localize(7340, "Open...")),
|
|
39
|
+
description: ( localize(7341, "Open a file or folder to start working")),
|
|
40
40
|
icon: Codicon.folderOpened,
|
|
41
41
|
when: '!isWeb && isMac',
|
|
42
42
|
content: {
|
|
@@ -46,8 +46,8 @@ const startEntries = [
|
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
id: 'topLevelOpenFile',
|
|
49
|
-
title: ( localize(
|
|
50
|
-
description: ( localize(
|
|
49
|
+
title: ( localize(7342, "Open File...")),
|
|
50
|
+
description: ( localize(7343, "Open a file to start working")),
|
|
51
51
|
icon: Codicon.goToFile,
|
|
52
52
|
when: 'isWeb || !isMac',
|
|
53
53
|
content: {
|
|
@@ -57,8 +57,8 @@ const startEntries = [
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
id: 'topLevelOpenFolder',
|
|
60
|
-
title: ( localize(
|
|
61
|
-
description: ( localize(
|
|
60
|
+
title: ( localize(7344, "Open Folder...")),
|
|
61
|
+
description: ( localize(7345, "Open a folder to start working")),
|
|
62
62
|
icon: Codicon.folderOpened,
|
|
63
63
|
when: '!isWeb && !isMac',
|
|
64
64
|
content: {
|
|
@@ -68,8 +68,8 @@ const startEntries = [
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
id: 'topLevelOpenFolderWeb',
|
|
71
|
-
title: ( localize(
|
|
72
|
-
description: ( localize(
|
|
71
|
+
title: ( localize(7344, "Open Folder...")),
|
|
72
|
+
description: ( localize(7345, "Open a folder to start working")),
|
|
73
73
|
icon: Codicon.folderOpened,
|
|
74
74
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
75
75
|
content: {
|
|
@@ -79,8 +79,8 @@ const startEntries = [
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
id: 'topLevelGitClone',
|
|
82
|
-
title: ( localize(
|
|
83
|
-
description: ( localize(
|
|
82
|
+
title: ( localize(7346, "Clone Git Repository...")),
|
|
83
|
+
description: ( localize(7347, "Clone a remote repository to a local folder")),
|
|
84
84
|
when: 'config.git.enabled && !git.missing',
|
|
85
85
|
icon: Codicon.sourceControl,
|
|
86
86
|
content: {
|
|
@@ -90,9 +90,9 @@ const startEntries = [
|
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
id: 'topLevelGitOpen',
|
|
93
|
-
title: ( localize(
|
|
93
|
+
title: ( localize(7348, "Open Repository...")),
|
|
94
94
|
description: ( localize(
|
|
95
|
-
|
|
95
|
+
7349,
|
|
96
96
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
97
97
|
)),
|
|
98
98
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -104,8 +104,8 @@ const startEntries = [
|
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
id: 'topLevelShowWalkthroughs',
|
|
107
|
-
title: ( localize(
|
|
108
|
-
description: ( localize(
|
|
107
|
+
title: ( localize(7350, "Open a Walkthrough...")),
|
|
108
|
+
description: ( localize(7351, "View a walkthrough on the editor or an extension")),
|
|
109
109
|
icon: Codicon.checklist,
|
|
110
110
|
when: 'allWalkthroughsHidden',
|
|
111
111
|
content: {
|
|
@@ -115,8 +115,8 @@ const startEntries = [
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
id: 'topLevelRemoteOpen',
|
|
118
|
-
title: ( localize(
|
|
119
|
-
description: ( localize(
|
|
118
|
+
title: ( localize(7352, "Connect to...")),
|
|
119
|
+
description: ( localize(7353, "Connect to remote development workspaces.")),
|
|
120
120
|
when: '!isWeb',
|
|
121
121
|
icon: Codicon.remote,
|
|
122
122
|
content: {
|
|
@@ -126,8 +126,8 @@ const startEntries = [
|
|
|
126
126
|
},
|
|
127
127
|
{
|
|
128
128
|
id: 'topLevelOpenTunnel',
|
|
129
|
-
title: ( localize(
|
|
130
|
-
description: ( localize(
|
|
129
|
+
title: ( localize(7354, "Open Tunnel...")),
|
|
130
|
+
description: ( localize(7355, "Connect to a remote machine through a Tunnel")),
|
|
131
131
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
132
132
|
icon: Codicon.remote,
|
|
133
133
|
content: {
|
|
@@ -140,8 +140,8 @@ const Button = (title, href) => `[${title}](${href})`;
|
|
|
140
140
|
const walkthroughs = [
|
|
141
141
|
{
|
|
142
142
|
id: 'Setup',
|
|
143
|
-
title: ( localize(
|
|
144
|
-
description: ( localize(
|
|
143
|
+
title: ( localize(7356, "Get Started with VS Code")),
|
|
144
|
+
description: ( localize(7357, "Customize your editor, learn the basics, and start coding")),
|
|
145
145
|
isFeatured: true,
|
|
146
146
|
icon: setupIcon,
|
|
147
147
|
when: '!isWeb',
|
|
@@ -151,11 +151,11 @@ const walkthroughs = [
|
|
|
151
151
|
steps: [
|
|
152
152
|
{
|
|
153
153
|
id: 'pickColorTheme',
|
|
154
|
-
title: ( localize(
|
|
154
|
+
title: ( localize(7358, "Choose your theme")),
|
|
155
155
|
description: ( localize(
|
|
156
|
-
|
|
156
|
+
7359,
|
|
157
157
|
"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(
|
|
158
|
+
Button(( localize(7360, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
159
159
|
)),
|
|
160
160
|
completionEvents: [
|
|
161
161
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -166,11 +166,11 @@ const walkthroughs = [
|
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
168
|
id: 'extensionsWeb',
|
|
169
|
-
title: ( localize(
|
|
169
|
+
title: ( localize(7361, "Code with extensions")),
|
|
170
170
|
description: ( localize(
|
|
171
|
-
|
|
171
|
+
7362,
|
|
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(7363, "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(7364, "Rich support for all your languages")),
|
|
183
183
|
description: ( localize(
|
|
184
|
-
|
|
184
|
+
7365,
|
|
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(7366, "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(7367, "Tune your settings")),
|
|
196
196
|
description: ( localize(
|
|
197
|
-
|
|
197
|
+
7368,
|
|
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(7369, "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(7370, "Sync settings across devices")),
|
|
208
208
|
description: ( localize(
|
|
209
|
-
|
|
209
|
+
7371,
|
|
210
210
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
211
|
-
Button(( localize(
|
|
211
|
+
Button(( localize(7372, "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(7373, "Unlock productivity with the Command Palette ")),
|
|
222
222
|
description: ( localize(
|
|
223
|
-
|
|
223
|
+
7374,
|
|
224
224
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
225
|
-
Button(( localize(
|
|
225
|
+
Button(( localize(7375, "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(7376, "Open up your code")),
|
|
232
232
|
description: ( localize(
|
|
233
|
-
|
|
233
|
+
7377,
|
|
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(7378, "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(7376, "Open up your code")),
|
|
245
245
|
description: ( localize(
|
|
246
|
-
|
|
246
|
+
7377,
|
|
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(7378, "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(7379, "Quickly navigate between your files")),
|
|
258
258
|
description: ( localize(
|
|
259
|
-
|
|
259
|
+
7380,
|
|
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(7381, "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(7382, "Watch video tutorials")),
|
|
271
271
|
description: ( localize(
|
|
272
|
-
|
|
272
|
+
7383,
|
|
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(7384, "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(7385, "Get Started with VS Code for the Web")),
|
|
284
|
+
description: ( localize(7386, "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(7358, "Choose your theme")),
|
|
295
295
|
description: ( localize(
|
|
296
|
-
|
|
296
|
+
7359,
|
|
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(7360, "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(7387, "Just the right amount of UI")),
|
|
309
309
|
description: ( localize(
|
|
310
|
-
|
|
310
|
+
7388,
|
|
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(7389, "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(7361, "Code with extensions")),
|
|
322
322
|
description: ( localize(
|
|
323
|
-
|
|
323
|
+
7362,
|
|
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(7363, "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(7364, "Rich support for all your languages")),
|
|
335
335
|
description: ( localize(
|
|
336
|
-
|
|
336
|
+
7365,
|
|
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(7366, "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(7370, "Sync settings across devices")),
|
|
348
348
|
description: ( localize(
|
|
349
|
-
|
|
349
|
+
7371,
|
|
350
350
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
351
|
-
Button(( localize(
|
|
351
|
+
Button(( localize(7372, "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(7373, "Unlock productivity with the Command Palette ")),
|
|
362
362
|
description: ( localize(
|
|
363
|
-
|
|
363
|
+
7374,
|
|
364
364
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
365
|
-
Button(( localize(
|
|
365
|
+
Button(( localize(7375, "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(7376, "Open up your code")),
|
|
372
372
|
description: ( localize(
|
|
373
|
-
|
|
373
|
+
7390,
|
|
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(7391, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
376
|
+
Button(( localize(7392, "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(7379, "Quickly navigate between your files")),
|
|
386
386
|
description: ( localize(
|
|
387
|
-
|
|
387
|
+
7380,
|
|
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(7381, "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: 'SetupScreenReader',
|
|
401
|
-
title: ( localize(
|
|
401
|
+
title: ( localize(7393, "Get Started with VS Code using a Screen Reader")),
|
|
402
402
|
description: ( localize(
|
|
403
|
-
|
|
403
|
+
7394,
|
|
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(7395, "Use the accessibility help dialog to learn about features")),
|
|
416
416
|
description: ( localize(
|
|
417
|
-
|
|
417
|
+
7396,
|
|
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(7397, "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
|
+
7398,
|
|
429
429
|
"Use the accessible view to inspect content line by line, character by character"
|
|
430
430
|
)),
|
|
431
431
|
description: ( localize(
|
|
432
|
-
|
|
432
|
+
7399,
|
|
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(7400, "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(7401, "Control the verbosity of aria labels")),
|
|
443
443
|
description: ( localize(
|
|
444
|
-
|
|
444
|
+
7402,
|
|
445
445
|
"Verbosity settings exist for features around the workbench so that once a user is familiar with a feature, they can avoid hearing hints about how to operate it. For example, features for which an accessibility help dialog exists will indicate how to open the dialog until the verbosity setting for that feature has been disabled.\n These and other accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
446
|
-
Button(( localize(
|
|
446
|
+
Button(( localize(7403, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
447
447
|
)),
|
|
448
448
|
media: {
|
|
449
449
|
type: 'markdown', path: 'empty'
|
|
@@ -452,14 +452,14 @@ const walkthroughs = [
|
|
|
452
452
|
{
|
|
453
453
|
id: 'accessibilitySignals',
|
|
454
454
|
title: ( localize(
|
|
455
|
-
|
|
455
|
+
7404,
|
|
456
456
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
457
457
|
)),
|
|
458
458
|
description: ( localize(
|
|
459
|
-
|
|
459
|
+
7405,
|
|
460
460
|
"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(
|
|
461
|
+
Button(( localize(7406, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
462
|
+
Button(( localize(7407, "List Signal Announcements")), 'command:signals.announcements.help')
|
|
463
463
|
)),
|
|
464
464
|
media: {
|
|
465
465
|
type: 'markdown', path: 'empty'
|
|
@@ -468,13 +468,13 @@ const walkthroughs = [
|
|
|
468
468
|
{
|
|
469
469
|
id: 'hover',
|
|
470
470
|
title: ( localize(
|
|
471
|
-
|
|
471
|
+
7408,
|
|
472
472
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
473
473
|
)),
|
|
474
474
|
description: ( localize(
|
|
475
|
-
|
|
475
|
+
7409,
|
|
476
476
|
"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(
|
|
477
|
+
Button(( localize(7410, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
478
478
|
)),
|
|
479
479
|
media: {
|
|
480
480
|
type: 'markdown', path: 'empty'
|
|
@@ -482,11 +482,11 @@ const walkthroughs = [
|
|
|
482
482
|
},
|
|
483
483
|
{
|
|
484
484
|
id: 'goToSymbol',
|
|
485
|
-
title: ( localize(
|
|
485
|
+
title: ( localize(7411, "Navigate to symbols in a file")),
|
|
486
486
|
description: ( localize(
|
|
487
|
-
|
|
487
|
+
7412,
|
|
488
488
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
489
|
-
Button(( localize(
|
|
489
|
+
Button(( localize(7413, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
490
490
|
)),
|
|
491
491
|
media: {
|
|
492
492
|
type: 'markdown', path: 'empty'
|
|
@@ -495,14 +495,14 @@ const walkthroughs = [
|
|
|
495
495
|
{
|
|
496
496
|
id: 'codeFolding',
|
|
497
497
|
title: ( localize(
|
|
498
|
-
|
|
498
|
+
7414,
|
|
499
499
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
500
500
|
)),
|
|
501
501
|
description: ( localize(
|
|
502
|
-
|
|
502
|
+
7415,
|
|
503
503
|
"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(
|
|
504
|
+
Button(( localize(7416, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
505
|
+
Button(( localize(7417, "Toggle Fold Recursively")), 'editor.toggleFoldRecursively')
|
|
506
506
|
)),
|
|
507
507
|
media: {
|
|
508
508
|
type: 'markdown', path: 'empty'
|
|
@@ -510,12 +510,12 @@ const walkthroughs = [
|
|
|
510
510
|
},
|
|
511
511
|
{
|
|
512
512
|
id: 'intellisense',
|
|
513
|
-
title: ( localize(
|
|
513
|
+
title: ( localize(7418, "Use Intellisense to improve coding efficiency")),
|
|
514
514
|
description: ( localize(
|
|
515
|
-
|
|
515
|
+
7419,
|
|
516
516
|
"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(
|
|
517
|
+
Button(( localize(7420, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
518
|
+
Button(( localize(7421, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
519
519
|
)),
|
|
520
520
|
media: {
|
|
521
521
|
type: 'markdown', path: 'empty'
|
|
@@ -527,19 +527,19 @@ const walkthroughs = [
|
|
|
527
527
|
{
|
|
528
528
|
id: 'Beginner',
|
|
529
529
|
isFeatured: false,
|
|
530
|
-
title: ( localize(
|
|
530
|
+
title: ( localize(7422, "Learn the Fundamentals")),
|
|
531
531
|
icon: beginnerIcon,
|
|
532
|
-
description: ( localize(
|
|
532
|
+
description: ( localize(7423, "Get an overview of the most essential features")),
|
|
533
533
|
content: {
|
|
534
534
|
type: 'steps',
|
|
535
535
|
steps: [
|
|
536
536
|
{
|
|
537
537
|
id: 'extensions',
|
|
538
|
-
title: ( localize(
|
|
538
|
+
title: ( localize(7361, "Code with extensions")),
|
|
539
539
|
description: ( localize(
|
|
540
|
-
|
|
540
|
+
7424,
|
|
541
541
|
"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(
|
|
542
|
+
Button(( localize(7425, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
543
543
|
)),
|
|
544
544
|
when: 'workspacePlatform != \'webworker\'',
|
|
545
545
|
media: {
|
|
@@ -548,11 +548,11 @@ const walkthroughs = [
|
|
|
548
548
|
},
|
|
549
549
|
{
|
|
550
550
|
id: 'terminal',
|
|
551
|
-
title: ( localize(
|
|
551
|
+
title: ( localize(7426, "Built-in terminal")),
|
|
552
552
|
description: ( localize(
|
|
553
|
-
|
|
553
|
+
7427,
|
|
554
554
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
555
|
+
Button(( localize(7428, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
556
556
|
)),
|
|
557
557
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
558
558
|
media: {
|
|
@@ -561,11 +561,11 @@ const walkthroughs = [
|
|
|
561
561
|
},
|
|
562
562
|
{
|
|
563
563
|
id: 'debugging',
|
|
564
|
-
title: ( localize(
|
|
564
|
+
title: ( localize(7429, "Watch your code in action")),
|
|
565
565
|
description: ( localize(
|
|
566
|
-
|
|
566
|
+
7430,
|
|
567
567
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
568
|
-
Button(( localize(
|
|
568
|
+
Button(( localize(7431, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
569
569
|
)),
|
|
570
570
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
571
571
|
media: {
|
|
@@ -574,11 +574,11 @@ const walkthroughs = [
|
|
|
574
574
|
},
|
|
575
575
|
{
|
|
576
576
|
id: 'scmClone',
|
|
577
|
-
title: ( localize(
|
|
577
|
+
title: ( localize(7432, "Track your code with Git")),
|
|
578
578
|
description: ( localize(
|
|
579
|
-
|
|
579
|
+
7433,
|
|
580
580
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
581
|
-
Button(( localize(
|
|
581
|
+
Button(( localize(7434, "Clone Repository")), 'command:git.clone')
|
|
582
582
|
)),
|
|
583
583
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
584
584
|
media: {
|
|
@@ -587,11 +587,11 @@ const walkthroughs = [
|
|
|
587
587
|
},
|
|
588
588
|
{
|
|
589
589
|
id: 'scmSetup',
|
|
590
|
-
title: ( localize(
|
|
590
|
+
title: ( localize(7432, "Track your code with Git")),
|
|
591
591
|
description: ( localize(
|
|
592
|
-
|
|
592
|
+
7435,
|
|
593
593
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
594
|
-
Button(( localize(
|
|
594
|
+
Button(( localize(7436, "Initialize Git Repository")), 'command:git.init')
|
|
595
595
|
)),
|
|
596
596
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
597
597
|
media: {
|
|
@@ -600,11 +600,11 @@ const walkthroughs = [
|
|
|
600
600
|
},
|
|
601
601
|
{
|
|
602
602
|
id: 'scm',
|
|
603
|
-
title: ( localize(
|
|
603
|
+
title: ( localize(7432, "Track your code with Git")),
|
|
604
604
|
description: ( localize(
|
|
605
|
-
|
|
605
|
+
7437,
|
|
606
606
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
607
|
-
Button(( localize(
|
|
607
|
+
Button(( localize(7438, "Open Source Control")), 'command:workbench.view.scm')
|
|
608
608
|
)),
|
|
609
609
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
610
610
|
media: {
|
|
@@ -613,11 +613,11 @@ const walkthroughs = [
|
|
|
613
613
|
},
|
|
614
614
|
{
|
|
615
615
|
id: 'installGit',
|
|
616
|
-
title: ( localize(
|
|
616
|
+
title: ( localize(7439, "Install Git")),
|
|
617
617
|
description: ( localize(
|
|
618
|
-
|
|
618
|
+
7440,
|
|
619
619
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
620
|
-
Button(( localize(
|
|
620
|
+
Button(( localize(7441, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
621
621
|
'[',
|
|
622
622
|
'](command:workbench.action.reloadWindow)'
|
|
623
623
|
)),
|
|
@@ -631,12 +631,12 @@ const walkthroughs = [
|
|
|
631
631
|
},
|
|
632
632
|
{
|
|
633
633
|
id: 'tasks',
|
|
634
|
-
title: ( localize(
|
|
634
|
+
title: ( localize(7442, "Automate your project tasks")),
|
|
635
635
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
636
636
|
description: ( localize(
|
|
637
|
-
|
|
637
|
+
7443,
|
|
638
638
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
639
|
-
Button(( localize(
|
|
639
|
+
Button(( localize(7444, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
640
640
|
)),
|
|
641
641
|
media: {
|
|
642
642
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -644,11 +644,11 @@ const walkthroughs = [
|
|
|
644
644
|
},
|
|
645
645
|
{
|
|
646
646
|
id: 'shortcuts',
|
|
647
|
-
title: ( localize(
|
|
647
|
+
title: ( localize(7445, "Customize your shortcuts")),
|
|
648
648
|
description: ( localize(
|
|
649
|
-
|
|
649
|
+
7446,
|
|
650
650
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
651
|
-
Button(( localize(
|
|
651
|
+
Button(( localize(7447, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
652
652
|
)),
|
|
653
653
|
media: {
|
|
654
654
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -656,12 +656,12 @@ const walkthroughs = [
|
|
|
656
656
|
},
|
|
657
657
|
{
|
|
658
658
|
id: 'workspaceTrust',
|
|
659
|
-
title: ( localize(
|
|
659
|
+
title: ( localize(7448, "Safely browse and edit code")),
|
|
660
660
|
description: ( localize(
|
|
661
|
-
|
|
661
|
+
7449,
|
|
662
662
|
"{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(
|
|
663
|
+
Button(( localize(7450, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
664
|
+
Button(( localize(7451, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
665
665
|
)),
|
|
666
666
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
667
667
|
media: {
|
|
@@ -673,7 +673,7 @@ const walkthroughs = [
|
|
|
673
673
|
},
|
|
674
674
|
{
|
|
675
675
|
id: 'notebooks',
|
|
676
|
-
title: ( localize(
|
|
676
|
+
title: ( localize(7452, "Customize Notebooks")),
|
|
677
677
|
description: '',
|
|
678
678
|
icon: setupIcon,
|
|
679
679
|
isFeatured: false,
|
|
@@ -684,8 +684,8 @@ const walkthroughs = [
|
|
|
684
684
|
{
|
|
685
685
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
686
686
|
id: 'notebookProfile',
|
|
687
|
-
title: ( localize(
|
|
688
|
-
description: ( localize(
|
|
687
|
+
title: ( localize(7453, "Select the layout for your notebooks")),
|
|
688
|
+
description: ( localize(7454, "Get notebooks to feel just the way you prefer")),
|
|
689
689
|
when: 'userHasOpenedNotebook',
|
|
690
690
|
media: {
|
|
691
691
|
type: 'markdown', path: 'notebookProfile'
|