@codingame/monaco-vscode-walkthrough-service-override 31.0.0 → 32.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 +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsBanner.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsBanner.js +9 -5
- package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcome.js +14 -14
- package/vscode/src/vs/workbench/contrib/welcomeAgentSessions/browser/agentSessionsWelcomeInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +26 -22
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +46 -43
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +2 -2
- 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 +1 -0
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +152 -152
- 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/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
|
@@ -44,12 +44,12 @@ gettingStartedContentRegistry.registerProvider(
|
|
|
44
44
|
notebookProfileContent
|
|
45
45
|
);
|
|
46
46
|
gettingStartedContentRegistry.registerProvider("vs/workbench/contrib/welcomeGettingStarted/common/media/empty", () => "");
|
|
47
|
-
const setupIcon = registerIcon("getting-started-setup", Codicon.zap, ( localize(
|
|
48
|
-
const beginnerIcon = registerIcon("getting-started-beginner", Codicon.lightbulb, ( localize(
|
|
47
|
+
const setupIcon = registerIcon("getting-started-setup", Codicon.zap, ( localize(15788, "Icon used for the setup category of welcome page")));
|
|
48
|
+
const beginnerIcon = registerIcon("getting-started-beginner", Codicon.lightbulb, ( localize(15789, "Icon used for the beginner category of welcome page")));
|
|
49
49
|
const startEntries = [{
|
|
50
50
|
id: "welcome.showNewFileEntries",
|
|
51
|
-
title: ( localize(
|
|
52
|
-
description: ( localize(
|
|
51
|
+
title: ( localize(15790, "New File...")),
|
|
52
|
+
description: ( localize(15791, "Open a new untitled text file, notebook, or custom editor.")),
|
|
53
53
|
icon: Codicon.newFile,
|
|
54
54
|
content: {
|
|
55
55
|
type: "startEntry",
|
|
@@ -57,8 +57,8 @@ const startEntries = [{
|
|
|
57
57
|
}
|
|
58
58
|
}, {
|
|
59
59
|
id: "topLevelOpenMac",
|
|
60
|
-
title: ( localize(
|
|
61
|
-
description: ( localize(
|
|
60
|
+
title: ( localize(15792, "Open...")),
|
|
61
|
+
description: ( localize(15793, "Open a file or folder to start working")),
|
|
62
62
|
icon: Codicon.folderOpened,
|
|
63
63
|
when: "!isWeb && isMac",
|
|
64
64
|
content: {
|
|
@@ -67,8 +67,8 @@ const startEntries = [{
|
|
|
67
67
|
}
|
|
68
68
|
}, {
|
|
69
69
|
id: "topLevelOpenFile",
|
|
70
|
-
title: ( localize(
|
|
71
|
-
description: ( localize(
|
|
70
|
+
title: ( localize(15794, "Open File...")),
|
|
71
|
+
description: ( localize(15795, "Open a file to start working")),
|
|
72
72
|
icon: Codicon.goToFile,
|
|
73
73
|
when: "isWeb || !isMac",
|
|
74
74
|
content: {
|
|
@@ -77,8 +77,8 @@ const startEntries = [{
|
|
|
77
77
|
}
|
|
78
78
|
}, {
|
|
79
79
|
id: "topLevelOpenFolder",
|
|
80
|
-
title: ( localize(
|
|
81
|
-
description: ( localize(
|
|
80
|
+
title: ( localize(15796, "Open Folder...")),
|
|
81
|
+
description: ( localize(15797, "Open a folder to start working")),
|
|
82
82
|
icon: Codicon.folderOpened,
|
|
83
83
|
when: "!isWeb && !isMac",
|
|
84
84
|
content: {
|
|
@@ -87,8 +87,8 @@ const startEntries = [{
|
|
|
87
87
|
}
|
|
88
88
|
}, {
|
|
89
89
|
id: "topLevelOpenFolderWeb",
|
|
90
|
-
title: ( localize(
|
|
91
|
-
description: ( localize(
|
|
90
|
+
title: ( localize(15796, "Open Folder...")),
|
|
91
|
+
description: ( localize(15797, "Open a folder to start working")),
|
|
92
92
|
icon: Codicon.folderOpened,
|
|
93
93
|
when: "!openFolderWorkspaceSupport && workbenchState == 'workspace'",
|
|
94
94
|
content: {
|
|
@@ -97,8 +97,8 @@ const startEntries = [{
|
|
|
97
97
|
}
|
|
98
98
|
}, {
|
|
99
99
|
id: "topLevelGitClone",
|
|
100
|
-
title: ( localize(
|
|
101
|
-
description: ( localize(
|
|
100
|
+
title: ( localize(15798, "Clone Git Repository...")),
|
|
101
|
+
description: ( localize(15799, "Clone a remote repository to a local folder")),
|
|
102
102
|
when: "config.git.enabled && !git.missing",
|
|
103
103
|
icon: Codicon.sourceControl,
|
|
104
104
|
content: {
|
|
@@ -107,9 +107,9 @@ const startEntries = [{
|
|
|
107
107
|
}
|
|
108
108
|
}, {
|
|
109
109
|
id: "topLevelGitOpen",
|
|
110
|
-
title: ( localize(
|
|
110
|
+
title: ( localize(15800, "Open Repository...")),
|
|
111
111
|
description: ( localize(
|
|
112
|
-
|
|
112
|
+
15801,
|
|
113
113
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
114
114
|
)),
|
|
115
115
|
when: "workspacePlatform == 'webworker'",
|
|
@@ -120,8 +120,8 @@ const startEntries = [{
|
|
|
120
120
|
}
|
|
121
121
|
}, {
|
|
122
122
|
id: "topLevelRemoteOpen",
|
|
123
|
-
title: ( localize(
|
|
124
|
-
description: ( localize(
|
|
123
|
+
title: ( localize(15802, "Connect to...")),
|
|
124
|
+
description: ( localize(15803, "Connect to remote development workspaces.")),
|
|
125
125
|
when: "!isWeb",
|
|
126
126
|
icon: Codicon.remote,
|
|
127
127
|
content: {
|
|
@@ -130,8 +130,8 @@ const startEntries = [{
|
|
|
130
130
|
}
|
|
131
131
|
}, {
|
|
132
132
|
id: "topLevelOpenTunnel",
|
|
133
|
-
title: ( localize(
|
|
134
|
-
description: ( localize(
|
|
133
|
+
title: ( localize(15804, "Open Tunnel...")),
|
|
134
|
+
description: ( localize(15805, "Connect to a remote machine through a Tunnel")),
|
|
135
135
|
when: "isWeb && showRemoteStartEntryInWeb",
|
|
136
136
|
icon: Codicon.remote,
|
|
137
137
|
content: {
|
|
@@ -140,8 +140,8 @@ const startEntries = [{
|
|
|
140
140
|
}
|
|
141
141
|
}, {
|
|
142
142
|
id: "topLevelNewWorkspaceChat",
|
|
143
|
-
title: ( localize(
|
|
144
|
-
description: ( localize(
|
|
143
|
+
title: ( localize(15806, "Generate New Workspace...")),
|
|
144
|
+
description: ( localize(15807, "Chat to create a new workspace")),
|
|
145
145
|
icon: Codicon.chatSparkle,
|
|
146
146
|
when: "!isWeb && !chatSetupHidden && !chatSetupDisabledInWorkspace",
|
|
147
147
|
content: {
|
|
@@ -150,24 +150,24 @@ const startEntries = [{
|
|
|
150
150
|
}
|
|
151
151
|
}];
|
|
152
152
|
const Button = (title, href) => `[${title}](${href})`;
|
|
153
|
-
const CopilotStepTitle = ( localize(
|
|
153
|
+
const CopilotStepTitle = ( localize(15808, "Use AI features with Copilot for free"));
|
|
154
154
|
const CopilotDescription = ( localize(
|
|
155
|
-
|
|
155
|
+
15809,
|
|
156
156
|
"You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code, and much more using natural language.",
|
|
157
157
|
defaultChat.documentationUrl ?? ""
|
|
158
158
|
));
|
|
159
159
|
const CopilotTermsString = ( localize(
|
|
160
|
-
|
|
160
|
+
15810,
|
|
161
161
|
"By continuing with {0} Copilot, you agree to {1}'s [Terms]({2}) and [Privacy Statement]({3})",
|
|
162
162
|
defaultChat.provider.default.name,
|
|
163
163
|
defaultChat.provider.default.name,
|
|
164
164
|
defaultChat.termsStatementUrl,
|
|
165
165
|
defaultChat.privacyStatementUrl
|
|
166
166
|
));
|
|
167
|
-
const CopilotAnonymousButton = Button(( localize(
|
|
168
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
169
|
-
const CopilotSignedInButton = Button(( localize(
|
|
170
|
-
const CopilotCompleteButton = Button(( localize(
|
|
167
|
+
const CopilotAnonymousButton = Button(( localize(15811, "Use AI Features")), `command:workbench.action.chat.triggerSetupAnonymousWithoutDialog`);
|
|
168
|
+
const CopilotSignedOutButton = Button(( localize(15811, "Use AI Features")), `command:workbench.action.chat.triggerSetup`);
|
|
169
|
+
const CopilotSignedInButton = Button(( localize(15811, "Use AI Features")), `command:workbench.action.chat.triggerSetup`);
|
|
170
|
+
const CopilotCompleteButton = Button(( localize(15812, "Start to Chat")), "command:workbench.action.chat.open");
|
|
171
171
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
172
172
|
const description = includeTerms ? `${CopilotDescription}\n${CopilotTermsString}\n${button}` : `${CopilotDescription}\n${button}`;
|
|
173
173
|
return {
|
|
@@ -184,12 +184,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
184
184
|
}
|
|
185
185
|
const walkthroughs = [{
|
|
186
186
|
id: "Setup",
|
|
187
|
-
title: ( localize(
|
|
188
|
-
description: ( localize(
|
|
187
|
+
title: ( localize(15813, "Get started with VS Code")),
|
|
188
|
+
description: ( localize(15814, "Customize your editor, learn the basics, and start coding")),
|
|
189
189
|
isFeatured: true,
|
|
190
190
|
icon: setupIcon,
|
|
191
191
|
when: "!isWeb",
|
|
192
|
-
walkthroughPageTitle: ( localize(
|
|
192
|
+
walkthroughPageTitle: ( localize(15815, "Setup VS Code")),
|
|
193
193
|
next: "Beginner",
|
|
194
194
|
content: {
|
|
195
195
|
type: "steps",
|
|
@@ -206,7 +206,7 @@ const walkthroughs = [{
|
|
|
206
206
|
), createCopilotSetupStep(
|
|
207
207
|
"CopilotSetupComplete",
|
|
208
208
|
CopilotCompleteButton,
|
|
209
|
-
"chatSetupCompleted && !chatSetupDisabled && (chatAnonymous || chatPlanPro || chatPlanProPlus || chatPlanBusiness || chatPlanEnterprise || chatPlanFree)",
|
|
209
|
+
"chatSetupCompleted && !chatSetupDisabled && (chatAnonymous || chatPlanPro || chatPlanProPlus || chatPlanMax || chatPlanBusiness || chatPlanEnterprise || chatPlanFree)",
|
|
210
210
|
false
|
|
211
211
|
), createCopilotSetupStep(
|
|
212
212
|
"CopilotSetupSignedIn",
|
|
@@ -215,11 +215,11 @@ const walkthroughs = [{
|
|
|
215
215
|
false
|
|
216
216
|
), {
|
|
217
217
|
id: "pickColorTheme",
|
|
218
|
-
title: ( localize(
|
|
218
|
+
title: ( localize(15816, "Choose your theme")),
|
|
219
219
|
description: ( localize(
|
|
220
|
-
|
|
220
|
+
15817,
|
|
221
221
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
222
|
-
Button(( localize(
|
|
222
|
+
Button(( localize(15818, "Browse Color Themes")), "command:workbench.action.selectTheme")
|
|
223
223
|
)),
|
|
224
224
|
completionEvents: [
|
|
225
225
|
"onSettingChanged:workbench.colorTheme",
|
|
@@ -231,11 +231,11 @@ const walkthroughs = [{
|
|
|
231
231
|
}
|
|
232
232
|
}, {
|
|
233
233
|
id: "videoTutorial",
|
|
234
|
-
title: ( localize(
|
|
234
|
+
title: ( localize(15819, "Watch video tutorials")),
|
|
235
235
|
description: ( localize(
|
|
236
|
-
|
|
236
|
+
15820,
|
|
237
237
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
238
|
-
Button(( localize(
|
|
238
|
+
Button(( localize(15821, "Watch Tutorial")), "https://aka.ms/vscode-getting-started-video")
|
|
239
239
|
)),
|
|
240
240
|
media: {
|
|
241
241
|
type: "svg",
|
|
@@ -246,22 +246,22 @@ const walkthroughs = [{
|
|
|
246
246
|
}
|
|
247
247
|
}, {
|
|
248
248
|
id: "SetupWeb",
|
|
249
|
-
title: ( localize(
|
|
250
|
-
description: ( localize(
|
|
249
|
+
title: ( localize(15822, "Get Started with VS Code for the Web")),
|
|
250
|
+
description: ( localize(15823, "Customize your editor, learn the basics, and start coding")),
|
|
251
251
|
isFeatured: true,
|
|
252
252
|
icon: setupIcon,
|
|
253
253
|
when: "isWeb",
|
|
254
254
|
next: "Beginner",
|
|
255
|
-
walkthroughPageTitle: ( localize(
|
|
255
|
+
walkthroughPageTitle: ( localize(15824, "Setup VS Code Web")),
|
|
256
256
|
content: {
|
|
257
257
|
type: "steps",
|
|
258
258
|
steps: [{
|
|
259
259
|
id: "pickColorThemeWeb",
|
|
260
|
-
title: ( localize(
|
|
260
|
+
title: ( localize(15816, "Choose your theme")),
|
|
261
261
|
description: ( localize(
|
|
262
|
-
|
|
262
|
+
15817,
|
|
263
263
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
264
|
-
Button(( localize(
|
|
264
|
+
Button(( localize(15818, "Browse Color Themes")), "command:workbench.action.selectTheme")
|
|
265
265
|
)),
|
|
266
266
|
completionEvents: [
|
|
267
267
|
"onSettingChanged:workbench.colorTheme",
|
|
@@ -273,11 +273,11 @@ const walkthroughs = [{
|
|
|
273
273
|
}
|
|
274
274
|
}, {
|
|
275
275
|
id: "menuBarWeb",
|
|
276
|
-
title: ( localize(
|
|
276
|
+
title: ( localize(15825, "Just the right amount of UI")),
|
|
277
277
|
description: ( localize(
|
|
278
|
-
|
|
278
|
+
15826,
|
|
279
279
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
280
|
-
Button(( localize(
|
|
280
|
+
Button(( localize(15827, "Toggle Menu Bar")), "command:workbench.action.toggleMenuBar")
|
|
281
281
|
)),
|
|
282
282
|
when: "isWeb",
|
|
283
283
|
media: {
|
|
@@ -287,11 +287,11 @@ const walkthroughs = [{
|
|
|
287
287
|
}
|
|
288
288
|
}, {
|
|
289
289
|
id: "extensionsWebWeb",
|
|
290
|
-
title: ( localize(
|
|
290
|
+
title: ( localize(15828, "Code with extensions")),
|
|
291
291
|
description: ( localize(
|
|
292
|
-
|
|
292
|
+
15829,
|
|
293
293
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
294
|
-
Button(( localize(
|
|
294
|
+
Button(( localize(15830, "Browse Popular Web Extensions")), "command:workbench.extensions.action.showPopularExtensions")
|
|
295
295
|
)),
|
|
296
296
|
when: "workspacePlatform == 'webworker'",
|
|
297
297
|
media: {
|
|
@@ -301,11 +301,11 @@ const walkthroughs = [{
|
|
|
301
301
|
}
|
|
302
302
|
}, {
|
|
303
303
|
id: "findLanguageExtensionsWeb",
|
|
304
|
-
title: ( localize(
|
|
304
|
+
title: ( localize(15831, "Rich support for all your languages")),
|
|
305
305
|
description: ( localize(
|
|
306
|
-
|
|
306
|
+
15832,
|
|
307
307
|
"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}",
|
|
308
|
-
Button(( localize(
|
|
308
|
+
Button(( localize(15833, "Browse Language Extensions")), "command:workbench.extensions.action.showLanguageExtensions")
|
|
309
309
|
)),
|
|
310
310
|
when: "workspacePlatform != 'webworker'",
|
|
311
311
|
media: {
|
|
@@ -315,11 +315,11 @@ const walkthroughs = [{
|
|
|
315
315
|
}
|
|
316
316
|
}, {
|
|
317
317
|
id: "settingsSyncWeb",
|
|
318
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(15834, "Sync settings across devices")),
|
|
319
319
|
description: ( localize(
|
|
320
|
-
|
|
320
|
+
15835,
|
|
321
321
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
322
|
-
Button(( localize(
|
|
322
|
+
Button(( localize(15836, "Backup and Sync Settings")), "command:workbench.userDataSync.actions.turnOn")
|
|
323
323
|
)),
|
|
324
324
|
when: "syncStatus != uninitialized",
|
|
325
325
|
completionEvents: ["onEvent:sync-enabled"],
|
|
@@ -330,11 +330,11 @@ const walkthroughs = [{
|
|
|
330
330
|
}
|
|
331
331
|
}, {
|
|
332
332
|
id: "commandPaletteTaskWeb",
|
|
333
|
-
title: ( localize(
|
|
333
|
+
title: ( localize(15837, "Unlock productivity with the Command Palette ")),
|
|
334
334
|
description: ( localize(
|
|
335
|
-
|
|
335
|
+
15838,
|
|
336
336
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
337
|
-
Button(( localize(
|
|
337
|
+
Button(( localize(15839, "Open Command Palette")), "command:workbench.action.showCommands")
|
|
338
338
|
)),
|
|
339
339
|
media: {
|
|
340
340
|
type: "svg",
|
|
@@ -343,12 +343,12 @@ const walkthroughs = [{
|
|
|
343
343
|
}
|
|
344
344
|
}, {
|
|
345
345
|
id: "pickAFolderTask-WebWeb",
|
|
346
|
-
title: ( localize(
|
|
346
|
+
title: ( localize(15840, "Open up your code")),
|
|
347
347
|
description: ( localize(
|
|
348
|
-
|
|
348
|
+
15841,
|
|
349
349
|
"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}",
|
|
350
|
-
Button(( localize(
|
|
351
|
-
Button(( localize(
|
|
350
|
+
Button(( localize(15842, "Open Folder")), "command:workbench.action.addRootFolder"),
|
|
351
|
+
Button(( localize(15843, "Open Repository")), "command:remoteHub.openRepository")
|
|
352
352
|
)),
|
|
353
353
|
when: "workspaceFolderCount == 0",
|
|
354
354
|
media: {
|
|
@@ -358,11 +358,11 @@ const walkthroughs = [{
|
|
|
358
358
|
}
|
|
359
359
|
}, {
|
|
360
360
|
id: "quickOpenWeb",
|
|
361
|
-
title: ( localize(
|
|
361
|
+
title: ( localize(15844, "Quickly navigate between your files")),
|
|
362
362
|
description: ( localize(
|
|
363
|
-
|
|
363
|
+
15845,
|
|
364
364
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
365
|
-
Button(( localize(
|
|
365
|
+
Button(( localize(15846, "Quick Open a File")), "command:toSide:workbench.action.quickOpen")
|
|
366
366
|
)),
|
|
367
367
|
when: "workspaceFolderCount != 0",
|
|
368
368
|
media: {
|
|
@@ -374,25 +374,25 @@ const walkthroughs = [{
|
|
|
374
374
|
}
|
|
375
375
|
}, {
|
|
376
376
|
id: "SetupAccessibility",
|
|
377
|
-
title: ( localize(
|
|
377
|
+
title: ( localize(15847, "Get Started with Accessibility Features")),
|
|
378
378
|
description: ( localize(
|
|
379
|
-
|
|
379
|
+
15848,
|
|
380
380
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
381
381
|
)),
|
|
382
382
|
isFeatured: true,
|
|
383
383
|
icon: setupIcon,
|
|
384
384
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
385
385
|
next: "Setup",
|
|
386
|
-
walkthroughPageTitle: ( localize(
|
|
386
|
+
walkthroughPageTitle: ( localize(15849, "Setup VS Code Accessibility")),
|
|
387
387
|
content: {
|
|
388
388
|
type: "steps",
|
|
389
389
|
steps: [{
|
|
390
390
|
id: "accessibilityHelp",
|
|
391
|
-
title: ( localize(
|
|
391
|
+
title: ( localize(15850, "Use the accessibility help dialog to learn about features")),
|
|
392
392
|
description: ( localize(
|
|
393
|
-
|
|
393
|
+
15851,
|
|
394
394
|
"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}",
|
|
395
|
-
Button(( localize(
|
|
395
|
+
Button(( localize(15852, "Open Accessibility Help")), "command:editor.action.accessibilityHelp")
|
|
396
396
|
)),
|
|
397
397
|
media: {
|
|
398
398
|
type: "markdown",
|
|
@@ -401,13 +401,13 @@ const walkthroughs = [{
|
|
|
401
401
|
}, {
|
|
402
402
|
id: "accessibleView",
|
|
403
403
|
title: ( localize(
|
|
404
|
-
|
|
404
|
+
15853,
|
|
405
405
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
406
406
|
)),
|
|
407
407
|
description: ( localize(
|
|
408
|
-
|
|
408
|
+
15854,
|
|
409
409
|
"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}",
|
|
410
|
-
Button(( localize(
|
|
410
|
+
Button(( localize(15855, "Open Accessible View")), "command:editor.action.accessibleView")
|
|
411
411
|
)),
|
|
412
412
|
media: {
|
|
413
413
|
type: "markdown",
|
|
@@ -415,11 +415,11 @@ const walkthroughs = [{
|
|
|
415
415
|
}
|
|
416
416
|
}, {
|
|
417
417
|
id: "verbositySettings",
|
|
418
|
-
title: ( localize(
|
|
418
|
+
title: ( localize(15856, "Control the verbosity of aria labels")),
|
|
419
419
|
description: ( localize(
|
|
420
|
-
|
|
420
|
+
15857,
|
|
421
421
|
"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}",
|
|
422
|
-
Button(( localize(
|
|
422
|
+
Button(( localize(15858, "Open Accessibility Settings")), "command:workbench.action.openAccessibilitySettings")
|
|
423
423
|
)),
|
|
424
424
|
media: {
|
|
425
425
|
type: "markdown",
|
|
@@ -427,11 +427,11 @@ const walkthroughs = [{
|
|
|
427
427
|
}
|
|
428
428
|
}, {
|
|
429
429
|
id: "commandPaletteTaskAccessibility",
|
|
430
|
-
title: ( localize(
|
|
430
|
+
title: ( localize(15859, "Unlock productivity with the Command Palette ")),
|
|
431
431
|
description: ( localize(
|
|
432
|
-
|
|
432
|
+
15860,
|
|
433
433
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
434
|
-
Button(( localize(
|
|
434
|
+
Button(( localize(15839, "Open Command Palette")), "command:workbench.action.showCommands")
|
|
435
435
|
)),
|
|
436
436
|
media: {
|
|
437
437
|
type: "markdown",
|
|
@@ -439,11 +439,11 @@ const walkthroughs = [{
|
|
|
439
439
|
}
|
|
440
440
|
}, {
|
|
441
441
|
id: "keybindingsAccessibility",
|
|
442
|
-
title: ( localize(
|
|
442
|
+
title: ( localize(15861, "Customize your keyboard shortcuts")),
|
|
443
443
|
description: ( localize(
|
|
444
|
-
|
|
444
|
+
15862,
|
|
445
445
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
446
|
-
Button(( localize(
|
|
446
|
+
Button(( localize(15863, "Keyboard Shortcuts")), "command:toSide:workbench.action.openGlobalKeybindings")
|
|
447
447
|
)),
|
|
448
448
|
media: {
|
|
449
449
|
type: "markdown",
|
|
@@ -452,14 +452,14 @@ const walkthroughs = [{
|
|
|
452
452
|
}, {
|
|
453
453
|
id: "accessibilitySignals",
|
|
454
454
|
title: ( localize(
|
|
455
|
-
|
|
455
|
+
15864,
|
|
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
|
+
15865,
|
|
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(15866, "List Signal Sounds")), "command:signals.sounds.help"),
|
|
462
|
+
Button(( localize(15867, "List Signal Announcements")), "command:accessibility.announcement.help")
|
|
463
463
|
)),
|
|
464
464
|
media: {
|
|
465
465
|
type: "markdown",
|
|
@@ -468,13 +468,13 @@ const walkthroughs = [{
|
|
|
468
468
|
}, {
|
|
469
469
|
id: "hover",
|
|
470
470
|
title: ( localize(
|
|
471
|
-
|
|
471
|
+
15868,
|
|
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
|
+
15869,
|
|
476
476
|
"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}",
|
|
477
|
-
Button(( localize(
|
|
477
|
+
Button(( localize(15870, "Show or Focus Hover")), "command:editor.action.showHover")
|
|
478
478
|
)),
|
|
479
479
|
media: {
|
|
480
480
|
type: "markdown",
|
|
@@ -482,11 +482,11 @@ const walkthroughs = [{
|
|
|
482
482
|
}
|
|
483
483
|
}, {
|
|
484
484
|
id: "goToSymbol",
|
|
485
|
-
title: ( localize(
|
|
485
|
+
title: ( localize(15871, "Navigate to symbols in a file")),
|
|
486
486
|
description: ( localize(
|
|
487
|
-
|
|
487
|
+
15872,
|
|
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(15873, "Go to Symbol")), "command:editor.action.goToSymbol")
|
|
490
490
|
)),
|
|
491
491
|
media: {
|
|
492
492
|
type: "markdown",
|
|
@@ -495,14 +495,14 @@ const walkthroughs = [{
|
|
|
495
495
|
}, {
|
|
496
496
|
id: "codeFolding",
|
|
497
497
|
title: ( localize(
|
|
498
|
-
|
|
498
|
+
15874,
|
|
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
|
+
15875,
|
|
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(15876, "Toggle Fold")), "command:editor.toggleFold"),
|
|
505
|
+
Button(( localize(15877, "Toggle Fold Recursively")), "command:editor.toggleFoldRecursively")
|
|
506
506
|
)),
|
|
507
507
|
media: {
|
|
508
508
|
type: "markdown",
|
|
@@ -510,12 +510,12 @@ const walkthroughs = [{
|
|
|
510
510
|
}
|
|
511
511
|
}, {
|
|
512
512
|
id: "intellisense",
|
|
513
|
-
title: ( localize(
|
|
513
|
+
title: ( localize(15878, "Use Intellisense to improve coding efficiency")),
|
|
514
514
|
description: ( localize(
|
|
515
|
-
|
|
515
|
+
15879,
|
|
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(15880, "Trigger Intellisense")), "command:editor.action.triggerSuggest"),
|
|
518
|
+
Button(( localize(15881, "Trigger Inline Suggestion")), "command:editor.action.inlineSuggest.trigger")
|
|
519
519
|
)),
|
|
520
520
|
media: {
|
|
521
521
|
type: "markdown",
|
|
@@ -523,11 +523,11 @@ const walkthroughs = [{
|
|
|
523
523
|
}
|
|
524
524
|
}, {
|
|
525
525
|
id: "accessibilitySettings",
|
|
526
|
-
title: ( localize(
|
|
526
|
+
title: ( localize(15882, "Configure accessibility settings")),
|
|
527
527
|
description: ( localize(
|
|
528
|
-
|
|
528
|
+
15883,
|
|
529
529
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
530
|
-
Button(( localize(
|
|
530
|
+
Button(( localize(15884, "Open Accessibility Settings")), "command:workbench.action.openAccessibilitySettings")
|
|
531
531
|
)),
|
|
532
532
|
media: {
|
|
533
533
|
type: "markdown",
|
|
@@ -535,13 +535,13 @@ const walkthroughs = [{
|
|
|
535
535
|
}
|
|
536
536
|
}, {
|
|
537
537
|
id: "dictation",
|
|
538
|
-
title: ( localize(
|
|
538
|
+
title: ( localize(15885, "Use dictation to write code and text in the editor and terminal")),
|
|
539
539
|
description: ( localize(
|
|
540
|
-
|
|
540
|
+
15886,
|
|
541
541
|
"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}",
|
|
542
|
-
Button(( localize(
|
|
543
|
-
Button(( localize(
|
|
544
|
-
Button(( localize(
|
|
542
|
+
Button(( localize(15887, "Voice: Start Dictation in Editor")), "command:workbench.action.editorDictation.start"),
|
|
543
|
+
Button(( localize(15888, "Terminal: Start Dictation in Terminal")), "command:workbench.action.terminal.startVoice"),
|
|
544
|
+
Button(( localize(15889, "Terminal: Stop Dictation in Terminal")), "command:workbench.action.terminal.stopVoice")
|
|
545
545
|
)),
|
|
546
546
|
when: "hasSpeechProvider",
|
|
547
547
|
media: {
|
|
@@ -553,19 +553,19 @@ const walkthroughs = [{
|
|
|
553
553
|
}, {
|
|
554
554
|
id: "Beginner",
|
|
555
555
|
isFeatured: false,
|
|
556
|
-
title: ( localize(
|
|
556
|
+
title: ( localize(15890, "Learn the Fundamentals")),
|
|
557
557
|
icon: beginnerIcon,
|
|
558
|
-
description: ( localize(
|
|
559
|
-
walkthroughPageTitle: ( localize(
|
|
558
|
+
description: ( localize(15891, "Get an overview of the most essential features")),
|
|
559
|
+
walkthroughPageTitle: ( localize(15892, "Essential Features")),
|
|
560
560
|
content: {
|
|
561
561
|
type: "steps",
|
|
562
562
|
steps: [{
|
|
563
563
|
id: "settingsAndSync",
|
|
564
|
-
title: ( localize(
|
|
564
|
+
title: ( localize(15893, "Tune your settings")),
|
|
565
565
|
description: ( localize(
|
|
566
|
-
|
|
566
|
+
15894,
|
|
567
567
|
"Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
|
|
568
|
-
Button(( localize(
|
|
568
|
+
Button(( localize(15895, "Open Settings")), "command:toSide:workbench.action.openSettings")
|
|
569
569
|
)),
|
|
570
570
|
when: "workspacePlatform != 'webworker' && syncStatus != uninitialized",
|
|
571
571
|
completionEvents: ["onEvent:sync-enabled"],
|
|
@@ -576,11 +576,11 @@ const walkthroughs = [{
|
|
|
576
576
|
}
|
|
577
577
|
}, {
|
|
578
578
|
id: "extensions",
|
|
579
|
-
title: ( localize(
|
|
579
|
+
title: ( localize(15828, "Code with extensions")),
|
|
580
580
|
description: ( localize(
|
|
581
|
-
|
|
581
|
+
15896,
|
|
582
582
|
"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}",
|
|
583
|
-
Button(( localize(
|
|
583
|
+
Button(( localize(15897, "Browse Popular Extensions")), "command:workbench.extensions.action.showPopularExtensions")
|
|
584
584
|
)),
|
|
585
585
|
when: "workspacePlatform != 'webworker'",
|
|
586
586
|
media: {
|
|
@@ -590,11 +590,11 @@ const walkthroughs = [{
|
|
|
590
590
|
}
|
|
591
591
|
}, {
|
|
592
592
|
id: "terminal",
|
|
593
|
-
title: ( localize(
|
|
593
|
+
title: ( localize(15898, "Built-in terminal")),
|
|
594
594
|
description: ( localize(
|
|
595
|
-
|
|
595
|
+
15899,
|
|
596
596
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
597
|
-
Button(( localize(
|
|
597
|
+
Button(( localize(15900, "Open Terminal")), "command:workbench.action.terminal.toggleTerminal")
|
|
598
598
|
)),
|
|
599
599
|
when: "workspacePlatform != 'webworker' && remoteName != codespaces && !terminalIsOpen",
|
|
600
600
|
media: {
|
|
@@ -604,11 +604,11 @@ const walkthroughs = [{
|
|
|
604
604
|
}
|
|
605
605
|
}, {
|
|
606
606
|
id: "debugging",
|
|
607
|
-
title: ( localize(
|
|
607
|
+
title: ( localize(15901, "Watch your code in action")),
|
|
608
608
|
description: ( localize(
|
|
609
|
-
|
|
609
|
+
15902,
|
|
610
610
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
611
|
-
Button(( localize(
|
|
611
|
+
Button(( localize(15903, "Run your Project")), "command:workbench.action.debug.selectandstart")
|
|
612
612
|
)),
|
|
613
613
|
when: "workspacePlatform != 'webworker' && workspaceFolderCount != 0",
|
|
614
614
|
media: {
|
|
@@ -618,11 +618,11 @@ const walkthroughs = [{
|
|
|
618
618
|
}
|
|
619
619
|
}, {
|
|
620
620
|
id: "scmClone",
|
|
621
|
-
title: ( localize(
|
|
621
|
+
title: ( localize(15904, "Track your code with Git")),
|
|
622
622
|
description: ( localize(
|
|
623
|
-
|
|
623
|
+
15905,
|
|
624
624
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
625
|
-
Button(( localize(
|
|
625
|
+
Button(( localize(15906, "Clone Repository")), "command:git.clone")
|
|
626
626
|
)),
|
|
627
627
|
when: "config.git.enabled && !git.missing && workspaceFolderCount == 0",
|
|
628
628
|
media: {
|
|
@@ -632,11 +632,11 @@ const walkthroughs = [{
|
|
|
632
632
|
}
|
|
633
633
|
}, {
|
|
634
634
|
id: "scmSetup",
|
|
635
|
-
title: ( localize(
|
|
635
|
+
title: ( localize(15904, "Track your code with Git")),
|
|
636
636
|
description: ( localize(
|
|
637
|
-
|
|
637
|
+
15907,
|
|
638
638
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
639
|
-
Button(( localize(
|
|
639
|
+
Button(( localize(15908, "Initialize Git Repository")), "command:git.init")
|
|
640
640
|
)),
|
|
641
641
|
when: "config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0",
|
|
642
642
|
media: {
|
|
@@ -646,11 +646,11 @@ const walkthroughs = [{
|
|
|
646
646
|
}
|
|
647
647
|
}, {
|
|
648
648
|
id: "scm",
|
|
649
|
-
title: ( localize(
|
|
649
|
+
title: ( localize(15904, "Track your code with Git")),
|
|
650
650
|
description: ( localize(
|
|
651
|
-
|
|
651
|
+
15909,
|
|
652
652
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
653
|
-
Button(( localize(
|
|
653
|
+
Button(( localize(15910, "Open Source Control")), "command:workbench.view.scm")
|
|
654
654
|
)),
|
|
655
655
|
when: "config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != 'workbench.view.scm'",
|
|
656
656
|
media: {
|
|
@@ -660,11 +660,11 @@ const walkthroughs = [{
|
|
|
660
660
|
}
|
|
661
661
|
}, {
|
|
662
662
|
id: "installGit",
|
|
663
|
-
title: ( localize(
|
|
663
|
+
title: ( localize(15911, "Install Git")),
|
|
664
664
|
description: ( localize(
|
|
665
|
-
|
|
665
|
+
15912,
|
|
666
666
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
667
|
-
Button(( localize(
|
|
667
|
+
Button(( localize(15913, "Install Git")), "https://aka.ms/vscode-install-git"),
|
|
668
668
|
"[",
|
|
669
669
|
"](command:workbench.action.reloadWindow)"
|
|
670
670
|
)),
|
|
@@ -677,12 +677,12 @@ const walkthroughs = [{
|
|
|
677
677
|
completionEvents: ["onContext:git.state == initialized"]
|
|
678
678
|
}, {
|
|
679
679
|
id: "tasks",
|
|
680
|
-
title: ( localize(
|
|
680
|
+
title: ( localize(15914, "Automate your project tasks")),
|
|
681
681
|
when: "workspaceFolderCount != 0 && workspacePlatform != 'webworker'",
|
|
682
682
|
description: ( localize(
|
|
683
|
-
|
|
683
|
+
15915,
|
|
684
684
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
685
|
-
Button(( localize(
|
|
685
|
+
Button(( localize(15916, "Run Auto-detected Tasks")), "command:workbench.action.tasks.runTask")
|
|
686
686
|
)),
|
|
687
687
|
media: {
|
|
688
688
|
type: "svg",
|
|
@@ -691,11 +691,11 @@ const walkthroughs = [{
|
|
|
691
691
|
}
|
|
692
692
|
}, {
|
|
693
693
|
id: "shortcuts",
|
|
694
|
-
title: ( localize(
|
|
694
|
+
title: ( localize(15917, "Customize your shortcuts")),
|
|
695
695
|
description: ( localize(
|
|
696
|
-
|
|
696
|
+
15918,
|
|
697
697
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
698
|
-
Button(( localize(
|
|
698
|
+
Button(( localize(15863, "Keyboard Shortcuts")), "command:toSide:workbench.action.openGlobalKeybindings")
|
|
699
699
|
)),
|
|
700
700
|
media: {
|
|
701
701
|
type: "svg",
|
|
@@ -704,12 +704,12 @@ const walkthroughs = [{
|
|
|
704
704
|
}
|
|
705
705
|
}, {
|
|
706
706
|
id: "workspaceTrust",
|
|
707
|
-
title: ( localize(
|
|
707
|
+
title: ( localize(15919, "Safely browse and edit code")),
|
|
708
708
|
description: ( localize(
|
|
709
|
-
|
|
709
|
+
15920,
|
|
710
710
|
"{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.",
|
|
711
|
-
Button(( localize(
|
|
712
|
-
Button(( localize(
|
|
711
|
+
Button(( localize(15921, "Workspace Trust")), "https://code.visualstudio.com/docs/editor/workspace-trust"),
|
|
712
|
+
Button(( localize(15922, "enable trust")), "command:toSide:workbench.trust.manage")
|
|
713
713
|
)),
|
|
714
714
|
when: "workspacePlatform != 'webworker' && !isWorkspaceTrusted && workspaceFolderCount == 0",
|
|
715
715
|
media: {
|
|
@@ -721,19 +721,19 @@ const walkthroughs = [{
|
|
|
721
721
|
}
|
|
722
722
|
}, {
|
|
723
723
|
id: "notebooks",
|
|
724
|
-
title: ( localize(
|
|
724
|
+
title: ( localize(15923, "Customize Notebooks")),
|
|
725
725
|
description: "",
|
|
726
726
|
icon: setupIcon,
|
|
727
727
|
isFeatured: false,
|
|
728
728
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
729
|
-
walkthroughPageTitle: ( localize(
|
|
729
|
+
walkthroughPageTitle: ( localize(15924, "Notebooks")),
|
|
730
730
|
content: {
|
|
731
731
|
type: "steps",
|
|
732
732
|
steps: [{
|
|
733
733
|
completionEvents: ["onCommand:notebook.setProfile"],
|
|
734
734
|
id: "notebookProfile",
|
|
735
|
-
title: ( localize(
|
|
736
|
-
description: ( localize(
|
|
735
|
+
title: ( localize(15925, "Select the layout for your notebooks")),
|
|
736
|
+
description: ( localize(15926, "Get notebooks to feel just the way you prefer")),
|
|
737
737
|
when: "userHasOpenedNotebook",
|
|
738
738
|
media: {
|
|
739
739
|
type: "markdown",
|