@codingame/monaco-vscode-walkthrough-service-override 24.2.0 → 25.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +80 -42
- 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/media/gettingStarted.css +43 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +151 -151
- 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/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/media/walkThroughPart.css +1 -0
- 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
|
@@ -31,13 +31,13 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
|
|
|
31
31
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
|
|
32
32
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
33
33
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
34
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
35
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
34
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(13277, "Icon used for the setup category of welcome page")));
|
|
35
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(13278, "Icon used for the beginner category of welcome page")));
|
|
36
36
|
const startEntries = [
|
|
37
37
|
{
|
|
38
38
|
id: 'welcome.showNewFileEntries',
|
|
39
|
-
title: ( localize(
|
|
40
|
-
description: ( localize(
|
|
39
|
+
title: ( localize(13279, "New File...")),
|
|
40
|
+
description: ( localize(13280, "Open a new untitled text file, notebook, or custom editor.")),
|
|
41
41
|
icon: Codicon.newFile,
|
|
42
42
|
content: {
|
|
43
43
|
type: 'startEntry',
|
|
@@ -46,8 +46,8 @@ const startEntries = [
|
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
id: 'topLevelOpenMac',
|
|
49
|
-
title: ( localize(
|
|
50
|
-
description: ( localize(
|
|
49
|
+
title: ( localize(13281, "Open...")),
|
|
50
|
+
description: ( localize(13282, "Open a file or folder to start working")),
|
|
51
51
|
icon: Codicon.folderOpened,
|
|
52
52
|
when: '!isWeb && isMac',
|
|
53
53
|
content: {
|
|
@@ -57,8 +57,8 @@ const startEntries = [
|
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
59
|
id: 'topLevelOpenFile',
|
|
60
|
-
title: ( localize(
|
|
61
|
-
description: ( localize(
|
|
60
|
+
title: ( localize(13283, "Open File...")),
|
|
61
|
+
description: ( localize(13284, "Open a file to start working")),
|
|
62
62
|
icon: Codicon.goToFile,
|
|
63
63
|
when: 'isWeb || !isMac',
|
|
64
64
|
content: {
|
|
@@ -68,8 +68,8 @@ const startEntries = [
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
id: 'topLevelOpenFolder',
|
|
71
|
-
title: ( localize(
|
|
72
|
-
description: ( localize(
|
|
71
|
+
title: ( localize(13285, "Open Folder...")),
|
|
72
|
+
description: ( localize(13286, "Open a folder to start working")),
|
|
73
73
|
icon: Codicon.folderOpened,
|
|
74
74
|
when: '!isWeb && !isMac',
|
|
75
75
|
content: {
|
|
@@ -79,8 +79,8 @@ const startEntries = [
|
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
id: 'topLevelOpenFolderWeb',
|
|
82
|
-
title: ( localize(
|
|
83
|
-
description: ( localize(
|
|
82
|
+
title: ( localize(13285, "Open Folder...")),
|
|
83
|
+
description: ( localize(13286, "Open a folder to start working")),
|
|
84
84
|
icon: Codicon.folderOpened,
|
|
85
85
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
86
86
|
content: {
|
|
@@ -90,8 +90,8 @@ const startEntries = [
|
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
id: 'topLevelGitClone',
|
|
93
|
-
title: ( localize(
|
|
94
|
-
description: ( localize(
|
|
93
|
+
title: ( localize(13287, "Clone Git Repository...")),
|
|
94
|
+
description: ( localize(13288, "Clone a remote repository to a local folder")),
|
|
95
95
|
when: 'config.git.enabled && !git.missing',
|
|
96
96
|
icon: Codicon.sourceControl,
|
|
97
97
|
content: {
|
|
@@ -101,9 +101,9 @@ const startEntries = [
|
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
id: 'topLevelGitOpen',
|
|
104
|
-
title: ( localize(
|
|
104
|
+
title: ( localize(13289, "Open Repository...")),
|
|
105
105
|
description: ( localize(
|
|
106
|
-
|
|
106
|
+
13290,
|
|
107
107
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
108
108
|
)),
|
|
109
109
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -115,8 +115,8 @@ const startEntries = [
|
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
id: 'topLevelRemoteOpen',
|
|
118
|
-
title: ( localize(
|
|
119
|
-
description: ( localize(
|
|
118
|
+
title: ( localize(13291, "Connect to...")),
|
|
119
|
+
description: ( localize(13292, "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(13293, "Open Tunnel...")),
|
|
130
|
+
description: ( localize(13294, "Connect to a remote machine through a Tunnel")),
|
|
131
131
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
132
132
|
icon: Codicon.remote,
|
|
133
133
|
content: {
|
|
@@ -137,8 +137,8 @@ const startEntries = [
|
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
id: 'topLevelNewWorkspaceChat',
|
|
140
|
-
title: ( localize(
|
|
141
|
-
description: ( localize(
|
|
140
|
+
title: ( localize(13295, "Generate New Workspace...")),
|
|
141
|
+
description: ( localize(13296, "Chat to create a new workspace")),
|
|
142
142
|
icon: Codicon.chatSparkle,
|
|
143
143
|
when: '!isWeb && !chatSetupHidden',
|
|
144
144
|
content: {
|
|
@@ -148,24 +148,24 @@ const startEntries = [
|
|
|
148
148
|
},
|
|
149
149
|
];
|
|
150
150
|
const Button = (title, href) => `[${title}](${href})`;
|
|
151
|
-
const CopilotStepTitle = ( localize(
|
|
151
|
+
const CopilotStepTitle = ( localize(13297, "Use AI features with Copilot for free"));
|
|
152
152
|
const CopilotDescription = ( localize(
|
|
153
|
-
|
|
153
|
+
13298,
|
|
154
154
|
"You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code, and much more using natural language.",
|
|
155
155
|
defaultChat.documentationUrl ?? ''
|
|
156
156
|
));
|
|
157
157
|
const CopilotTermsString = ( localize(
|
|
158
|
-
|
|
158
|
+
13299,
|
|
159
159
|
"By continuing with {0} Copilot, you agree to {1}'s [Terms]({2}) and [Privacy Statement]({3})",
|
|
160
160
|
defaultChat.provider.default.name,
|
|
161
161
|
defaultChat.provider.default.name,
|
|
162
162
|
defaultChat.termsStatementUrl,
|
|
163
163
|
defaultChat.privacyStatementUrl
|
|
164
164
|
));
|
|
165
|
-
const CopilotAnonymousButton = Button(( localize(
|
|
166
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
167
|
-
const CopilotSignedInButton = Button(( localize(
|
|
168
|
-
const CopilotCompleteButton = Button(( localize(
|
|
165
|
+
const CopilotAnonymousButton = Button(( localize(13300, "Use AI Features")), `command:workbench.action.chat.triggerSetupAnonymousWithoutDialog`);
|
|
166
|
+
const CopilotSignedOutButton = Button(( localize(13300, "Use AI Features")), `command:workbench.action.chat.triggerSetup`);
|
|
167
|
+
const CopilotSignedInButton = Button(( localize(13300, "Use AI Features")), `command:workbench.action.chat.triggerSetup`);
|
|
168
|
+
const CopilotCompleteButton = Button(( localize(13301, "Start to Chat")), 'command:workbench.action.chat.open');
|
|
169
169
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
170
170
|
const description = includeTerms ?
|
|
171
171
|
`${CopilotDescription}\n${CopilotTermsString}\n${button}` :
|
|
@@ -183,12 +183,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
183
183
|
const walkthroughs = [
|
|
184
184
|
{
|
|
185
185
|
id: 'Setup',
|
|
186
|
-
title: ( localize(
|
|
187
|
-
description: ( localize(
|
|
186
|
+
title: ( localize(13302, "Get started with VS Code")),
|
|
187
|
+
description: ( localize(13303, "Customize your editor, learn the basics, and start coding")),
|
|
188
188
|
isFeatured: true,
|
|
189
189
|
icon: setupIcon,
|
|
190
190
|
when: '!isWeb',
|
|
191
|
-
walkthroughPageTitle: ( localize(
|
|
191
|
+
walkthroughPageTitle: ( localize(13304, 'Setup VS Code')),
|
|
192
192
|
next: 'Beginner',
|
|
193
193
|
content: {
|
|
194
194
|
type: 'steps',
|
|
@@ -199,11 +199,11 @@ const walkthroughs = [
|
|
|
199
199
|
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', false),
|
|
200
200
|
{
|
|
201
201
|
id: 'pickColorTheme',
|
|
202
|
-
title: ( localize(
|
|
202
|
+
title: ( localize(13305, "Choose your theme")),
|
|
203
203
|
description: ( localize(
|
|
204
|
-
|
|
204
|
+
13306,
|
|
205
205
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
206
|
-
Button(( localize(
|
|
206
|
+
Button(( localize(13307, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
207
207
|
)),
|
|
208
208
|
completionEvents: [
|
|
209
209
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -213,11 +213,11 @@ const walkthroughs = [
|
|
|
213
213
|
},
|
|
214
214
|
{
|
|
215
215
|
id: 'videoTutorial',
|
|
216
|
-
title: ( localize(
|
|
216
|
+
title: ( localize(13308, "Watch video tutorials")),
|
|
217
217
|
description: ( localize(
|
|
218
|
-
|
|
218
|
+
13309,
|
|
219
219
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
220
|
-
Button(( localize(
|
|
220
|
+
Button(( localize(13310, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
221
221
|
)),
|
|
222
222
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
223
223
|
}
|
|
@@ -226,23 +226,23 @@ const walkthroughs = [
|
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
228
|
id: 'SetupWeb',
|
|
229
|
-
title: ( localize(
|
|
230
|
-
description: ( localize(
|
|
229
|
+
title: ( localize(13311, "Get Started with VS Code for the Web")),
|
|
230
|
+
description: ( localize(13312, "Customize your editor, learn the basics, and start coding")),
|
|
231
231
|
isFeatured: true,
|
|
232
232
|
icon: setupIcon,
|
|
233
233
|
when: 'isWeb',
|
|
234
234
|
next: 'Beginner',
|
|
235
|
-
walkthroughPageTitle: ( localize(
|
|
235
|
+
walkthroughPageTitle: ( localize(13313, 'Setup VS Code Web')),
|
|
236
236
|
content: {
|
|
237
237
|
type: 'steps',
|
|
238
238
|
steps: [
|
|
239
239
|
{
|
|
240
240
|
id: 'pickColorThemeWeb',
|
|
241
|
-
title: ( localize(
|
|
241
|
+
title: ( localize(13305, "Choose your theme")),
|
|
242
242
|
description: ( localize(
|
|
243
|
-
|
|
243
|
+
13306,
|
|
244
244
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
245
|
-
Button(( localize(
|
|
245
|
+
Button(( localize(13307, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
246
246
|
)),
|
|
247
247
|
completionEvents: [
|
|
248
248
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -252,11 +252,11 @@ const walkthroughs = [
|
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
id: 'menuBarWeb',
|
|
255
|
-
title: ( localize(
|
|
255
|
+
title: ( localize(13314, "Just the right amount of UI")),
|
|
256
256
|
description: ( localize(
|
|
257
|
-
|
|
257
|
+
13315,
|
|
258
258
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
259
|
-
Button(( localize(
|
|
259
|
+
Button(( localize(13316, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
260
260
|
)),
|
|
261
261
|
when: 'isWeb',
|
|
262
262
|
media: {
|
|
@@ -265,11 +265,11 @@ const walkthroughs = [
|
|
|
265
265
|
},
|
|
266
266
|
{
|
|
267
267
|
id: 'extensionsWebWeb',
|
|
268
|
-
title: ( localize(
|
|
268
|
+
title: ( localize(13317, "Code with extensions")),
|
|
269
269
|
description: ( localize(
|
|
270
|
-
|
|
270
|
+
13318,
|
|
271
271
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
272
|
-
Button(( localize(
|
|
272
|
+
Button(( localize(13319, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
273
273
|
)),
|
|
274
274
|
when: 'workspacePlatform == \'webworker\'',
|
|
275
275
|
media: {
|
|
@@ -278,11 +278,11 @@ const walkthroughs = [
|
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
id: 'findLanguageExtensionsWeb',
|
|
281
|
-
title: ( localize(
|
|
281
|
+
title: ( localize(13320, "Rich support for all your languages")),
|
|
282
282
|
description: ( localize(
|
|
283
|
-
|
|
283
|
+
13321,
|
|
284
284
|
"Code smarter with syntax highlighting, inline suggestions, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
285
|
-
Button(( localize(
|
|
285
|
+
Button(( localize(13322, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
286
286
|
)),
|
|
287
287
|
when: 'workspacePlatform != \'webworker\'',
|
|
288
288
|
media: {
|
|
@@ -291,11 +291,11 @@ const walkthroughs = [
|
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
id: 'settingsSyncWeb',
|
|
294
|
-
title: ( localize(
|
|
294
|
+
title: ( localize(13323, "Sync settings across devices")),
|
|
295
295
|
description: ( localize(
|
|
296
|
-
|
|
296
|
+
13324,
|
|
297
297
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
298
|
-
Button(( localize(
|
|
298
|
+
Button(( localize(13325, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
299
299
|
)),
|
|
300
300
|
when: 'syncStatus != uninitialized',
|
|
301
301
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -305,22 +305,22 @@ const walkthroughs = [
|
|
|
305
305
|
},
|
|
306
306
|
{
|
|
307
307
|
id: 'commandPaletteTaskWeb',
|
|
308
|
-
title: ( localize(
|
|
308
|
+
title: ( localize(13326, "Unlock productivity with the Command Palette ")),
|
|
309
309
|
description: ( localize(
|
|
310
|
-
|
|
310
|
+
13327,
|
|
311
311
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
312
|
-
Button(( localize(
|
|
312
|
+
Button(( localize(13328, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
313
313
|
)),
|
|
314
314
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
id: 'pickAFolderTask-WebWeb',
|
|
318
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(13329, "Open up your code")),
|
|
319
319
|
description: ( localize(
|
|
320
|
-
|
|
320
|
+
13330,
|
|
321
321
|
"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}",
|
|
322
|
-
Button(( localize(
|
|
323
|
-
Button(( localize(
|
|
322
|
+
Button(( localize(13331, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
323
|
+
Button(( localize(13332, "Open Repository")), 'command:remoteHub.openRepository')
|
|
324
324
|
)),
|
|
325
325
|
when: 'workspaceFolderCount == 0',
|
|
326
326
|
media: {
|
|
@@ -329,11 +329,11 @@ const walkthroughs = [
|
|
|
329
329
|
},
|
|
330
330
|
{
|
|
331
331
|
id: 'quickOpenWeb',
|
|
332
|
-
title: ( localize(
|
|
332
|
+
title: ( localize(13333, "Quickly navigate between your files")),
|
|
333
333
|
description: ( localize(
|
|
334
|
-
|
|
334
|
+
13334,
|
|
335
335
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
336
|
-
Button(( localize(
|
|
336
|
+
Button(( localize(13335, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
337
337
|
)),
|
|
338
338
|
when: 'workspaceFolderCount != 0',
|
|
339
339
|
media: {
|
|
@@ -345,26 +345,26 @@ const walkthroughs = [
|
|
|
345
345
|
},
|
|
346
346
|
{
|
|
347
347
|
id: 'SetupAccessibility',
|
|
348
|
-
title: ( localize(
|
|
348
|
+
title: ( localize(13336, "Get Started with Accessibility Features")),
|
|
349
349
|
description: ( localize(
|
|
350
|
-
|
|
350
|
+
13337,
|
|
351
351
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
352
352
|
)),
|
|
353
353
|
isFeatured: true,
|
|
354
354
|
icon: setupIcon,
|
|
355
355
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
356
356
|
next: 'Setup',
|
|
357
|
-
walkthroughPageTitle: ( localize(
|
|
357
|
+
walkthroughPageTitle: ( localize(13338, 'Setup VS Code Accessibility')),
|
|
358
358
|
content: {
|
|
359
359
|
type: 'steps',
|
|
360
360
|
steps: [
|
|
361
361
|
{
|
|
362
362
|
id: 'accessibilityHelp',
|
|
363
|
-
title: ( localize(
|
|
363
|
+
title: ( localize(13339, "Use the accessibility help dialog to learn about features")),
|
|
364
364
|
description: ( localize(
|
|
365
|
-
|
|
365
|
+
13340,
|
|
366
366
|
"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}",
|
|
367
|
-
Button(( localize(
|
|
367
|
+
Button(( localize(13341, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
368
368
|
)),
|
|
369
369
|
media: {
|
|
370
370
|
type: 'markdown', path: 'empty'
|
|
@@ -373,13 +373,13 @@ const walkthroughs = [
|
|
|
373
373
|
{
|
|
374
374
|
id: 'accessibleView',
|
|
375
375
|
title: ( localize(
|
|
376
|
-
|
|
376
|
+
13342,
|
|
377
377
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
378
378
|
)),
|
|
379
379
|
description: ( localize(
|
|
380
|
-
|
|
380
|
+
13343,
|
|
381
381
|
"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}",
|
|
382
|
-
Button(( localize(
|
|
382
|
+
Button(( localize(13344, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
383
383
|
)),
|
|
384
384
|
media: {
|
|
385
385
|
type: 'markdown', path: 'empty'
|
|
@@ -387,11 +387,11 @@ const walkthroughs = [
|
|
|
387
387
|
},
|
|
388
388
|
{
|
|
389
389
|
id: 'verbositySettings',
|
|
390
|
-
title: ( localize(
|
|
390
|
+
title: ( localize(13345, "Control the verbosity of aria labels")),
|
|
391
391
|
description: ( localize(
|
|
392
|
-
|
|
392
|
+
13346,
|
|
393
393
|
"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}",
|
|
394
|
-
Button(( localize(
|
|
394
|
+
Button(( localize(13347, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
395
395
|
)),
|
|
396
396
|
media: {
|
|
397
397
|
type: 'markdown', path: 'empty'
|
|
@@ -399,21 +399,21 @@ const walkthroughs = [
|
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
401
|
id: 'commandPaletteTaskAccessibility',
|
|
402
|
-
title: ( localize(
|
|
402
|
+
title: ( localize(13348, "Unlock productivity with the Command Palette ")),
|
|
403
403
|
description: ( localize(
|
|
404
|
-
|
|
404
|
+
13349,
|
|
405
405
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
406
|
-
Button(( localize(
|
|
406
|
+
Button(( localize(13328, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
407
407
|
)),
|
|
408
408
|
media: { type: 'markdown', path: 'empty' },
|
|
409
409
|
},
|
|
410
410
|
{
|
|
411
411
|
id: 'keybindingsAccessibility',
|
|
412
|
-
title: ( localize(
|
|
412
|
+
title: ( localize(13350, "Customize your keyboard shortcuts")),
|
|
413
413
|
description: ( localize(
|
|
414
|
-
|
|
414
|
+
13351,
|
|
415
415
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
416
|
-
Button(( localize(
|
|
416
|
+
Button(( localize(13352, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
417
417
|
)),
|
|
418
418
|
media: {
|
|
419
419
|
type: 'markdown', path: 'empty',
|
|
@@ -422,14 +422,14 @@ const walkthroughs = [
|
|
|
422
422
|
{
|
|
423
423
|
id: 'accessibilitySignals',
|
|
424
424
|
title: ( localize(
|
|
425
|
-
|
|
425
|
+
13353,
|
|
426
426
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
427
427
|
)),
|
|
428
428
|
description: ( localize(
|
|
429
|
-
|
|
429
|
+
13354,
|
|
430
430
|
"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}",
|
|
431
|
-
Button(( localize(
|
|
432
|
-
Button(( localize(
|
|
431
|
+
Button(( localize(13355, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
432
|
+
Button(( localize(13356, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
433
433
|
)),
|
|
434
434
|
media: {
|
|
435
435
|
type: 'markdown', path: 'empty'
|
|
@@ -438,13 +438,13 @@ const walkthroughs = [
|
|
|
438
438
|
{
|
|
439
439
|
id: 'hover',
|
|
440
440
|
title: ( localize(
|
|
441
|
-
|
|
441
|
+
13357,
|
|
442
442
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
443
443
|
)),
|
|
444
444
|
description: ( localize(
|
|
445
|
-
|
|
445
|
+
13358,
|
|
446
446
|
"While focus is in the editor on a variable or symbol, a hover can be focused with the Show or Open Hover command.\n{0}",
|
|
447
|
-
Button(( localize(
|
|
447
|
+
Button(( localize(13359, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
448
448
|
)),
|
|
449
449
|
media: {
|
|
450
450
|
type: 'markdown', path: 'empty'
|
|
@@ -452,11 +452,11 @@ const walkthroughs = [
|
|
|
452
452
|
},
|
|
453
453
|
{
|
|
454
454
|
id: 'goToSymbol',
|
|
455
|
-
title: ( localize(
|
|
455
|
+
title: ( localize(13360, "Navigate to symbols in a file")),
|
|
456
456
|
description: ( localize(
|
|
457
|
-
|
|
457
|
+
13361,
|
|
458
458
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
459
|
-
Button(( localize(
|
|
459
|
+
Button(( localize(13362, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
460
460
|
)),
|
|
461
461
|
media: {
|
|
462
462
|
type: 'markdown', path: 'empty'
|
|
@@ -465,14 +465,14 @@ const walkthroughs = [
|
|
|
465
465
|
{
|
|
466
466
|
id: 'codeFolding',
|
|
467
467
|
title: ( localize(
|
|
468
|
-
|
|
468
|
+
13363,
|
|
469
469
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
470
470
|
)),
|
|
471
471
|
description: ( localize(
|
|
472
|
-
|
|
472
|
+
13364,
|
|
473
473
|
"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",
|
|
474
|
-
Button(( localize(
|
|
475
|
-
Button(( localize(
|
|
474
|
+
Button(( localize(13365, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
475
|
+
Button(( localize(13366, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
476
476
|
)),
|
|
477
477
|
media: {
|
|
478
478
|
type: 'markdown', path: 'empty'
|
|
@@ -480,12 +480,12 @@ const walkthroughs = [
|
|
|
480
480
|
},
|
|
481
481
|
{
|
|
482
482
|
id: 'intellisense',
|
|
483
|
-
title: ( localize(
|
|
483
|
+
title: ( localize(13367, "Use Intellisense to improve coding efficiency")),
|
|
484
484
|
description: ( localize(
|
|
485
|
-
|
|
485
|
+
13368,
|
|
486
486
|
"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.",
|
|
487
|
-
Button(( localize(
|
|
488
|
-
Button(( localize(
|
|
487
|
+
Button(( localize(13369, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
488
|
+
Button(( localize(13370, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
489
489
|
)),
|
|
490
490
|
media: {
|
|
491
491
|
type: 'markdown', path: 'empty'
|
|
@@ -493,23 +493,23 @@ const walkthroughs = [
|
|
|
493
493
|
},
|
|
494
494
|
{
|
|
495
495
|
id: 'accessibilitySettings',
|
|
496
|
-
title: ( localize(
|
|
496
|
+
title: ( localize(13371, "Configure accessibility settings")),
|
|
497
497
|
description: ( localize(
|
|
498
|
-
|
|
498
|
+
13372,
|
|
499
499
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
500
|
-
Button(( localize(
|
|
500
|
+
Button(( localize(13373, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
501
501
|
)),
|
|
502
502
|
media: { type: 'markdown', path: 'empty' }
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
505
|
id: 'dictation',
|
|
506
|
-
title: ( localize(
|
|
506
|
+
title: ( localize(13374, "Use dictation to write code and text in the editor and terminal")),
|
|
507
507
|
description: ( localize(
|
|
508
|
-
|
|
508
|
+
13375,
|
|
509
509
|
"Dictation allows you to write code and text using your voice. It can be activated with the Voice: Start Dictation in Editor command.\n{0}\n For dictation in the terminal, use the Voice: Start Dictation in Terminal and Voice: Stop Dictation in Terminal commands.\n{1}\n{2}",
|
|
510
|
-
Button(( localize(
|
|
511
|
-
Button(( localize(
|
|
512
|
-
Button(( localize(
|
|
510
|
+
Button(( localize(13376, "Voice: Start Dictation in Editor")), 'command:workbench.action.editorDictation.start'),
|
|
511
|
+
Button(( localize(13377, "Terminal: Start Dictation in Terminal")), 'command:workbench.action.terminal.startVoice'),
|
|
512
|
+
Button(( localize(13378, "Terminal: Stop Dictation in Terminal")), 'command:workbench.action.terminal.stopVoice')
|
|
513
513
|
)),
|
|
514
514
|
when: 'hasSpeechProvider',
|
|
515
515
|
media: { type: 'markdown', path: 'empty' }
|
|
@@ -520,20 +520,20 @@ const walkthroughs = [
|
|
|
520
520
|
{
|
|
521
521
|
id: 'Beginner',
|
|
522
522
|
isFeatured: false,
|
|
523
|
-
title: ( localize(
|
|
523
|
+
title: ( localize(13379, "Learn the Fundamentals")),
|
|
524
524
|
icon: beginnerIcon,
|
|
525
|
-
description: ( localize(
|
|
526
|
-
walkthroughPageTitle: ( localize(
|
|
525
|
+
description: ( localize(13380, "Get an overview of the most essential features")),
|
|
526
|
+
walkthroughPageTitle: ( localize(13381, 'Essential Features')),
|
|
527
527
|
content: {
|
|
528
528
|
type: 'steps',
|
|
529
529
|
steps: [
|
|
530
530
|
{
|
|
531
531
|
id: 'settingsAndSync',
|
|
532
|
-
title: ( localize(
|
|
532
|
+
title: ( localize(13382, "Tune your settings")),
|
|
533
533
|
description: ( localize(
|
|
534
|
-
|
|
534
|
+
13383,
|
|
535
535
|
"Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
|
|
536
|
-
Button(( localize(
|
|
536
|
+
Button(( localize(13384, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
537
537
|
)),
|
|
538
538
|
when: 'workspacePlatform != \'webworker\' && syncStatus != uninitialized',
|
|
539
539
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -543,11 +543,11 @@ const walkthroughs = [
|
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
545
|
id: 'extensions',
|
|
546
|
-
title: ( localize(
|
|
546
|
+
title: ( localize(13317, "Code with extensions")),
|
|
547
547
|
description: ( localize(
|
|
548
|
-
|
|
548
|
+
13385,
|
|
549
549
|
"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}",
|
|
550
|
-
Button(( localize(
|
|
550
|
+
Button(( localize(13386, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
551
551
|
)),
|
|
552
552
|
when: 'workspacePlatform != \'webworker\'',
|
|
553
553
|
media: {
|
|
@@ -556,11 +556,11 @@ const walkthroughs = [
|
|
|
556
556
|
},
|
|
557
557
|
{
|
|
558
558
|
id: 'terminal',
|
|
559
|
-
title: ( localize(
|
|
559
|
+
title: ( localize(13387, "Built-in terminal")),
|
|
560
560
|
description: ( localize(
|
|
561
|
-
|
|
561
|
+
13388,
|
|
562
562
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
563
|
-
Button(( localize(
|
|
563
|
+
Button(( localize(13389, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
564
564
|
)),
|
|
565
565
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
566
566
|
media: {
|
|
@@ -569,11 +569,11 @@ const walkthroughs = [
|
|
|
569
569
|
},
|
|
570
570
|
{
|
|
571
571
|
id: 'debugging',
|
|
572
|
-
title: ( localize(
|
|
572
|
+
title: ( localize(13390, "Watch your code in action")),
|
|
573
573
|
description: ( localize(
|
|
574
|
-
|
|
574
|
+
13391,
|
|
575
575
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
576
|
-
Button(( localize(
|
|
576
|
+
Button(( localize(13392, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
577
577
|
)),
|
|
578
578
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
579
579
|
media: {
|
|
@@ -582,11 +582,11 @@ const walkthroughs = [
|
|
|
582
582
|
},
|
|
583
583
|
{
|
|
584
584
|
id: 'scmClone',
|
|
585
|
-
title: ( localize(
|
|
585
|
+
title: ( localize(13393, "Track your code with Git")),
|
|
586
586
|
description: ( localize(
|
|
587
|
-
|
|
587
|
+
13394,
|
|
588
588
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
589
|
-
Button(( localize(
|
|
589
|
+
Button(( localize(13395, "Clone Repository")), 'command:git.clone')
|
|
590
590
|
)),
|
|
591
591
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
592
592
|
media: {
|
|
@@ -595,11 +595,11 @@ const walkthroughs = [
|
|
|
595
595
|
},
|
|
596
596
|
{
|
|
597
597
|
id: 'scmSetup',
|
|
598
|
-
title: ( localize(
|
|
598
|
+
title: ( localize(13393, "Track your code with Git")),
|
|
599
599
|
description: ( localize(
|
|
600
|
-
|
|
600
|
+
13396,
|
|
601
601
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
602
|
-
Button(( localize(
|
|
602
|
+
Button(( localize(13397, "Initialize Git Repository")), 'command:git.init')
|
|
603
603
|
)),
|
|
604
604
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
605
605
|
media: {
|
|
@@ -608,11 +608,11 @@ const walkthroughs = [
|
|
|
608
608
|
},
|
|
609
609
|
{
|
|
610
610
|
id: 'scm',
|
|
611
|
-
title: ( localize(
|
|
611
|
+
title: ( localize(13393, "Track your code with Git")),
|
|
612
612
|
description: ( localize(
|
|
613
|
-
|
|
613
|
+
13398,
|
|
614
614
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
615
|
-
Button(( localize(
|
|
615
|
+
Button(( localize(13399, "Open Source Control")), 'command:workbench.view.scm')
|
|
616
616
|
)),
|
|
617
617
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
618
618
|
media: {
|
|
@@ -621,11 +621,11 @@ const walkthroughs = [
|
|
|
621
621
|
},
|
|
622
622
|
{
|
|
623
623
|
id: 'installGit',
|
|
624
|
-
title: ( localize(
|
|
624
|
+
title: ( localize(13400, "Install Git")),
|
|
625
625
|
description: ( localize(
|
|
626
|
-
|
|
626
|
+
13401,
|
|
627
627
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
628
|
-
Button(( localize(
|
|
628
|
+
Button(( localize(13402, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
629
629
|
'[',
|
|
630
630
|
'](command:workbench.action.reloadWindow)'
|
|
631
631
|
)),
|
|
@@ -639,12 +639,12 @@ const walkthroughs = [
|
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
641
|
id: 'tasks',
|
|
642
|
-
title: ( localize(
|
|
642
|
+
title: ( localize(13403, "Automate your project tasks")),
|
|
643
643
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
644
644
|
description: ( localize(
|
|
645
|
-
|
|
645
|
+
13404,
|
|
646
646
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
647
|
-
Button(( localize(
|
|
647
|
+
Button(( localize(13405, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
648
648
|
)),
|
|
649
649
|
media: {
|
|
650
650
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -652,11 +652,11 @@ const walkthroughs = [
|
|
|
652
652
|
},
|
|
653
653
|
{
|
|
654
654
|
id: 'shortcuts',
|
|
655
|
-
title: ( localize(
|
|
655
|
+
title: ( localize(13406, "Customize your shortcuts")),
|
|
656
656
|
description: ( localize(
|
|
657
|
-
|
|
657
|
+
13407,
|
|
658
658
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
659
|
-
Button(( localize(
|
|
659
|
+
Button(( localize(13352, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
660
660
|
)),
|
|
661
661
|
media: {
|
|
662
662
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -664,12 +664,12 @@ const walkthroughs = [
|
|
|
664
664
|
},
|
|
665
665
|
{
|
|
666
666
|
id: 'workspaceTrust',
|
|
667
|
-
title: ( localize(
|
|
667
|
+
title: ( localize(13408, "Safely browse and edit code")),
|
|
668
668
|
description: ( localize(
|
|
669
|
-
|
|
669
|
+
13409,
|
|
670
670
|
"{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.",
|
|
671
|
-
Button(( localize(
|
|
672
|
-
Button(( localize(
|
|
671
|
+
Button(( localize(13410, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
672
|
+
Button(( localize(13411, "enable trust")), 'command:toSide:workbench.trust.manage')
|
|
673
673
|
)),
|
|
674
674
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
675
675
|
media: {
|
|
@@ -681,20 +681,20 @@ const walkthroughs = [
|
|
|
681
681
|
},
|
|
682
682
|
{
|
|
683
683
|
id: 'notebooks',
|
|
684
|
-
title: ( localize(
|
|
684
|
+
title: ( localize(13412, "Customize Notebooks")),
|
|
685
685
|
description: '',
|
|
686
686
|
icon: setupIcon,
|
|
687
687
|
isFeatured: false,
|
|
688
688
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
689
|
-
walkthroughPageTitle: ( localize(
|
|
689
|
+
walkthroughPageTitle: ( localize(13413, 'Notebooks')),
|
|
690
690
|
content: {
|
|
691
691
|
type: 'steps',
|
|
692
692
|
steps: [
|
|
693
693
|
{
|
|
694
694
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
695
695
|
id: 'notebookProfile',
|
|
696
|
-
title: ( localize(
|
|
697
|
-
description: ( localize(
|
|
696
|
+
title: ( localize(13414, "Select the layout for your notebooks")),
|
|
697
|
+
description: ( localize(13415, "Get notebooks to feel just the way you prefer")),
|
|
698
698
|
when: 'userHasOpenedNotebook',
|
|
699
699
|
media: {
|
|
700
700
|
type: 'markdown', path: 'notebookProfile'
|