@codingame/monaco-vscode-walkthrough-service-override 18.1.3 → 18.2.1
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 +10 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +22 -22
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +41 -41
- 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 +4 -4
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +179 -179
- 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 +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -10,7 +10,7 @@ import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from '@codingame/monaco-vscode-api
|
|
|
10
10
|
import product from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/product';
|
|
11
11
|
|
|
12
12
|
const copilotSettingsMessage = ( localize(
|
|
13
|
-
|
|
13
|
+
11879,
|
|
14
14
|
"{0} Copilot Free, Pro and Pro+ may show [public code]({1}) suggestions and we may use your data for product improvement. You can change these [settings]({2}) at any time.",
|
|
15
15
|
product.defaultChatAgent?.providerName,
|
|
16
16
|
product.defaultChatAgent?.publicCodeMatchesUrl,
|
|
@@ -32,14 +32,14 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
|
|
|
32
32
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
|
|
33
33
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
34
34
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
35
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
36
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
35
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(11880, "Icon used for the setup category of welcome page")));
|
|
36
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(11881, "Icon used for the beginner category of welcome page")));
|
|
37
37
|
const NEW_WELCOME_EXPERIENCE = 'NewWelcomeExperience';
|
|
38
38
|
const startEntries = [
|
|
39
39
|
{
|
|
40
40
|
id: 'welcome.showNewFileEntries',
|
|
41
|
-
title: ( localize(
|
|
42
|
-
description: ( localize(
|
|
41
|
+
title: ( localize(11882, "New File...")),
|
|
42
|
+
description: ( localize(11883, "Open a new untitled text file, notebook, or custom editor.")),
|
|
43
43
|
icon: Codicon.newFile,
|
|
44
44
|
content: {
|
|
45
45
|
type: 'startEntry',
|
|
@@ -48,8 +48,8 @@ const startEntries = [
|
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
id: 'topLevelOpenMac',
|
|
51
|
-
title: ( localize(
|
|
52
|
-
description: ( localize(
|
|
51
|
+
title: ( localize(11884, "Open...")),
|
|
52
|
+
description: ( localize(11885, "Open a file or folder to start working")),
|
|
53
53
|
icon: Codicon.folderOpened,
|
|
54
54
|
when: '!isWeb && isMac',
|
|
55
55
|
content: {
|
|
@@ -59,8 +59,8 @@ const startEntries = [
|
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
id: 'topLevelOpenFile',
|
|
62
|
-
title: ( localize(
|
|
63
|
-
description: ( localize(
|
|
62
|
+
title: ( localize(11886, "Open File...")),
|
|
63
|
+
description: ( localize(11887, "Open a file to start working")),
|
|
64
64
|
icon: Codicon.goToFile,
|
|
65
65
|
when: 'isWeb || !isMac',
|
|
66
66
|
content: {
|
|
@@ -70,8 +70,8 @@ const startEntries = [
|
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
id: 'topLevelOpenFolder',
|
|
73
|
-
title: ( localize(
|
|
74
|
-
description: ( localize(
|
|
73
|
+
title: ( localize(11888, "Open Folder...")),
|
|
74
|
+
description: ( localize(11889, "Open a folder to start working")),
|
|
75
75
|
icon: Codicon.folderOpened,
|
|
76
76
|
when: '!isWeb && !isMac',
|
|
77
77
|
content: {
|
|
@@ -81,8 +81,8 @@ const startEntries = [
|
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
id: 'topLevelOpenFolderWeb',
|
|
84
|
-
title: ( localize(
|
|
85
|
-
description: ( localize(
|
|
84
|
+
title: ( localize(11888, "Open Folder...")),
|
|
85
|
+
description: ( localize(11889, "Open a folder to start working")),
|
|
86
86
|
icon: Codicon.folderOpened,
|
|
87
87
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
88
88
|
content: {
|
|
@@ -92,8 +92,8 @@ const startEntries = [
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
id: 'topLevelGitClone',
|
|
95
|
-
title: ( localize(
|
|
96
|
-
description: ( localize(
|
|
95
|
+
title: ( localize(11890, "Clone Git Repository...")),
|
|
96
|
+
description: ( localize(11891, "Clone a remote repository to a local folder")),
|
|
97
97
|
when: 'config.git.enabled && !git.missing',
|
|
98
98
|
icon: Codicon.sourceControl,
|
|
99
99
|
content: {
|
|
@@ -103,9 +103,9 @@ const startEntries = [
|
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
105
|
id: 'topLevelGitOpen',
|
|
106
|
-
title: ( localize(
|
|
106
|
+
title: ( localize(11892, "Open Repository...")),
|
|
107
107
|
description: ( localize(
|
|
108
|
-
|
|
108
|
+
11893,
|
|
109
109
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
110
110
|
)),
|
|
111
111
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -117,8 +117,8 @@ const startEntries = [
|
|
|
117
117
|
},
|
|
118
118
|
{
|
|
119
119
|
id: 'topLevelRemoteOpen',
|
|
120
|
-
title: ( localize(
|
|
121
|
-
description: ( localize(
|
|
120
|
+
title: ( localize(11894, "Connect to...")),
|
|
121
|
+
description: ( localize(11895, "Connect to remote development workspaces.")),
|
|
122
122
|
when: '!isWeb',
|
|
123
123
|
icon: Codicon.remote,
|
|
124
124
|
content: {
|
|
@@ -128,8 +128,8 @@ const startEntries = [
|
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
id: 'topLevelOpenTunnel',
|
|
131
|
-
title: ( localize(
|
|
132
|
-
description: ( localize(
|
|
131
|
+
title: ( localize(11896, "Open Tunnel...")),
|
|
132
|
+
description: ( localize(11897, "Connect to a remote machine through a Tunnel")),
|
|
133
133
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
134
134
|
icon: Codicon.remote,
|
|
135
135
|
content: {
|
|
@@ -139,8 +139,8 @@ const startEntries = [
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
id: 'topLevelNewWorkspaceChat',
|
|
142
|
-
title: ( localize(
|
|
143
|
-
description: ( localize(
|
|
142
|
+
title: ( localize(11898, "New Workspace with Copilot...")),
|
|
143
|
+
description: ( localize(11899, "Create a new workspace with Copilot")),
|
|
144
144
|
icon: Codicon.copilot,
|
|
145
145
|
when: '!isWeb && !chatSetupHidden',
|
|
146
146
|
content: {
|
|
@@ -150,15 +150,15 @@ const startEntries = [
|
|
|
150
150
|
},
|
|
151
151
|
];
|
|
152
152
|
const Button = (title, href) => `[${title}](${href})`;
|
|
153
|
-
const CopilotStepTitle = ( localize(
|
|
153
|
+
const CopilotStepTitle = ( localize(11900, "Use AI features with Copilot for free"));
|
|
154
154
|
const CopilotDescription = ( localize(
|
|
155
|
-
|
|
155
|
+
11901,
|
|
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
|
product.defaultChatAgent?.documentationUrl ?? ''
|
|
158
158
|
));
|
|
159
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
160
|
-
const CopilotSignedInButton = Button(( localize(
|
|
161
|
-
const CopilotCompleteButton = Button(( localize(
|
|
159
|
+
const CopilotSignedOutButton = Button(( localize(11902, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
160
|
+
const CopilotSignedInButton = Button(( localize(11903, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
161
|
+
const CopilotCompleteButton = Button(( localize(11904, "Chat with Copilot")), 'command:workbench.action.chat.open');
|
|
162
162
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
163
163
|
const description = includeTerms ?
|
|
164
164
|
`${CopilotDescription}\n\n${button}` :
|
|
@@ -176,12 +176,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
176
176
|
const walkthroughs = [
|
|
177
177
|
{
|
|
178
178
|
id: 'Setup',
|
|
179
|
-
title: ( localize(
|
|
180
|
-
description: ( localize(
|
|
179
|
+
title: ( localize(11905, "Get started with VS Code")),
|
|
180
|
+
description: ( localize(11906, "Customize your editor, learn the basics, and start coding")),
|
|
181
181
|
isFeatured: true,
|
|
182
182
|
icon: setupIcon,
|
|
183
183
|
when: '!isWeb',
|
|
184
|
-
walkthroughPageTitle: ( localize(
|
|
184
|
+
walkthroughPageTitle: ( localize(11907, 'Setup VS Code')),
|
|
185
185
|
next: 'Beginner',
|
|
186
186
|
content: {
|
|
187
187
|
type: 'steps',
|
|
@@ -191,11 +191,11 @@ const walkthroughs = [
|
|
|
191
191
|
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
|
|
192
192
|
{
|
|
193
193
|
id: 'pickColorTheme',
|
|
194
|
-
title: ( localize(
|
|
194
|
+
title: ( localize(11908, "Choose your theme")),
|
|
195
195
|
description: ( localize(
|
|
196
|
-
|
|
196
|
+
11909,
|
|
197
197
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
198
|
-
Button(( localize(
|
|
198
|
+
Button(( localize(11910, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
199
199
|
)),
|
|
200
200
|
completionEvents: [
|
|
201
201
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -205,11 +205,11 @@ const walkthroughs = [
|
|
|
205
205
|
},
|
|
206
206
|
{
|
|
207
207
|
id: 'extensionsWeb',
|
|
208
|
-
title: ( localize(
|
|
208
|
+
title: ( localize(11911, "Code with extensions")),
|
|
209
209
|
description: ( localize(
|
|
210
|
-
|
|
210
|
+
11912,
|
|
211
211
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
212
|
-
Button(( localize(
|
|
212
|
+
Button(( localize(11913, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
213
213
|
)),
|
|
214
214
|
when: 'workspacePlatform == \'webworker\'',
|
|
215
215
|
media: {
|
|
@@ -218,11 +218,11 @@ const walkthroughs = [
|
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
id: 'findLanguageExtensions',
|
|
221
|
-
title: ( localize(
|
|
221
|
+
title: ( localize(11914, "Rich support for all your languages")),
|
|
222
222
|
description: ( localize(
|
|
223
|
-
|
|
223
|
+
11915,
|
|
224
224
|
"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}",
|
|
225
|
-
Button(( localize(
|
|
225
|
+
Button(( localize(11916, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
226
226
|
)),
|
|
227
227
|
when: 'workspacePlatform != \'webworker\'',
|
|
228
228
|
media: {
|
|
@@ -231,11 +231,11 @@ const walkthroughs = [
|
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
id: 'settingsAndSync',
|
|
234
|
-
title: ( localize(
|
|
234
|
+
title: ( localize(11917, "Tune your settings")),
|
|
235
235
|
description: ( localize(
|
|
236
|
-
|
|
236
|
+
11918,
|
|
237
237
|
"Customize every aspect of VS Code and your extensions to your liking. [Back up and sync](command:workbench.userDataSync.actions.turnOn) your essential customizations across all your devices.\n{0}",
|
|
238
|
-
Button(( localize(
|
|
238
|
+
Button(( localize(11919, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
239
239
|
)),
|
|
240
240
|
when: 'syncStatus != uninitialized',
|
|
241
241
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -245,21 +245,21 @@ const walkthroughs = [
|
|
|
245
245
|
},
|
|
246
246
|
{
|
|
247
247
|
id: 'commandPaletteTask',
|
|
248
|
-
title: ( localize(
|
|
248
|
+
title: ( localize(11920, "Unlock productivity with the Command Palette ")),
|
|
249
249
|
description: ( localize(
|
|
250
|
-
|
|
250
|
+
11921,
|
|
251
251
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
252
|
-
Button(( localize(
|
|
252
|
+
Button(( localize(11922, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
253
253
|
)),
|
|
254
254
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
id: 'quickOpen',
|
|
258
|
-
title: ( localize(
|
|
258
|
+
title: ( localize(11923, "Quickly navigate between your files")),
|
|
259
259
|
description: ( localize(
|
|
260
|
-
|
|
260
|
+
11924,
|
|
261
261
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
262
|
-
Button(( localize(
|
|
262
|
+
Button(( localize(11925, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
263
263
|
)),
|
|
264
264
|
when: 'workspaceFolderCount != 0',
|
|
265
265
|
media: {
|
|
@@ -268,11 +268,11 @@ const walkthroughs = [
|
|
|
268
268
|
},
|
|
269
269
|
{
|
|
270
270
|
id: 'videoTutorial',
|
|
271
|
-
title: ( localize(
|
|
271
|
+
title: ( localize(11926, "Watch video tutorials")),
|
|
272
272
|
description: ( localize(
|
|
273
|
-
|
|
273
|
+
11927,
|
|
274
274
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
275
|
-
Button(( localize(
|
|
275
|
+
Button(( localize(11928, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
276
276
|
)),
|
|
277
277
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
278
278
|
}
|
|
@@ -281,23 +281,23 @@ const walkthroughs = [
|
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
283
|
id: 'SetupWeb',
|
|
284
|
-
title: ( localize(
|
|
285
|
-
description: ( localize(
|
|
284
|
+
title: ( localize(11929, "Get Started with VS Code for the Web")),
|
|
285
|
+
description: ( localize(11930, "Customize your editor, learn the basics, and start coding")),
|
|
286
286
|
isFeatured: true,
|
|
287
287
|
icon: setupIcon,
|
|
288
288
|
when: 'isWeb',
|
|
289
289
|
next: 'Beginner',
|
|
290
|
-
walkthroughPageTitle: ( localize(
|
|
290
|
+
walkthroughPageTitle: ( localize(11931, 'Setup VS Code Web')),
|
|
291
291
|
content: {
|
|
292
292
|
type: 'steps',
|
|
293
293
|
steps: [
|
|
294
294
|
{
|
|
295
295
|
id: 'pickColorThemeWeb',
|
|
296
|
-
title: ( localize(
|
|
296
|
+
title: ( localize(11908, "Choose your theme")),
|
|
297
297
|
description: ( localize(
|
|
298
|
-
|
|
298
|
+
11909,
|
|
299
299
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
300
|
-
Button(( localize(
|
|
300
|
+
Button(( localize(11910, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
301
301
|
)),
|
|
302
302
|
completionEvents: [
|
|
303
303
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -307,11 +307,11 @@ const walkthroughs = [
|
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
id: 'menuBarWeb',
|
|
310
|
-
title: ( localize(
|
|
310
|
+
title: ( localize(11932, "Just the right amount of UI")),
|
|
311
311
|
description: ( localize(
|
|
312
|
-
|
|
312
|
+
11933,
|
|
313
313
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
314
|
-
Button(( localize(
|
|
314
|
+
Button(( localize(11934, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
315
315
|
)),
|
|
316
316
|
when: 'isWeb',
|
|
317
317
|
media: {
|
|
@@ -320,11 +320,11 @@ const walkthroughs = [
|
|
|
320
320
|
},
|
|
321
321
|
{
|
|
322
322
|
id: 'extensionsWebWeb',
|
|
323
|
-
title: ( localize(
|
|
323
|
+
title: ( localize(11911, "Code with extensions")),
|
|
324
324
|
description: ( localize(
|
|
325
|
-
|
|
325
|
+
11912,
|
|
326
326
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
327
|
-
Button(( localize(
|
|
327
|
+
Button(( localize(11913, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
328
328
|
)),
|
|
329
329
|
when: 'workspacePlatform == \'webworker\'',
|
|
330
330
|
media: {
|
|
@@ -333,11 +333,11 @@ const walkthroughs = [
|
|
|
333
333
|
},
|
|
334
334
|
{
|
|
335
335
|
id: 'findLanguageExtensionsWeb',
|
|
336
|
-
title: ( localize(
|
|
336
|
+
title: ( localize(11914, "Rich support for all your languages")),
|
|
337
337
|
description: ( localize(
|
|
338
|
-
|
|
338
|
+
11915,
|
|
339
339
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
340
|
-
Button(( localize(
|
|
340
|
+
Button(( localize(11916, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
341
341
|
)),
|
|
342
342
|
when: 'workspacePlatform != \'webworker\'',
|
|
343
343
|
media: {
|
|
@@ -346,11 +346,11 @@ const walkthroughs = [
|
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
id: 'settingsSyncWeb',
|
|
349
|
-
title: ( localize(
|
|
349
|
+
title: ( localize(11935, "Sync settings across devices")),
|
|
350
350
|
description: ( localize(
|
|
351
|
-
|
|
351
|
+
11936,
|
|
352
352
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
353
|
-
Button(( localize(
|
|
353
|
+
Button(( localize(11937, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
354
354
|
)),
|
|
355
355
|
when: 'syncStatus != uninitialized',
|
|
356
356
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -360,22 +360,22 @@ const walkthroughs = [
|
|
|
360
360
|
},
|
|
361
361
|
{
|
|
362
362
|
id: 'commandPaletteTaskWeb',
|
|
363
|
-
title: ( localize(
|
|
363
|
+
title: ( localize(11920, "Unlock productivity with the Command Palette ")),
|
|
364
364
|
description: ( localize(
|
|
365
|
-
|
|
365
|
+
11921,
|
|
366
366
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
367
|
-
Button(( localize(
|
|
367
|
+
Button(( localize(11922, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
368
368
|
)),
|
|
369
369
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
370
370
|
},
|
|
371
371
|
{
|
|
372
372
|
id: 'pickAFolderTask-WebWeb',
|
|
373
|
-
title: ( localize(
|
|
373
|
+
title: ( localize(11938, "Open up your code")),
|
|
374
374
|
description: ( localize(
|
|
375
|
-
|
|
375
|
+
11939,
|
|
376
376
|
"You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}",
|
|
377
|
-
Button(( localize(
|
|
378
|
-
Button(( localize(
|
|
377
|
+
Button(( localize(11940, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
378
|
+
Button(( localize(11941, "Open Repository")), 'command:remoteHub.openRepository')
|
|
379
379
|
)),
|
|
380
380
|
when: 'workspaceFolderCount == 0',
|
|
381
381
|
media: {
|
|
@@ -384,11 +384,11 @@ const walkthroughs = [
|
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
id: 'quickOpenWeb',
|
|
387
|
-
title: ( localize(
|
|
387
|
+
title: ( localize(11923, "Quickly navigate between your files")),
|
|
388
388
|
description: ( localize(
|
|
389
|
-
|
|
389
|
+
11924,
|
|
390
390
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
391
|
-
Button(( localize(
|
|
391
|
+
Button(( localize(11925, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
392
392
|
)),
|
|
393
393
|
when: 'workspaceFolderCount != 0',
|
|
394
394
|
media: {
|
|
@@ -400,26 +400,26 @@ const walkthroughs = [
|
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
402
|
id: 'SetupAccessibility',
|
|
403
|
-
title: ( localize(
|
|
403
|
+
title: ( localize(11942, "Get Started with Accessibility Features")),
|
|
404
404
|
description: ( localize(
|
|
405
|
-
|
|
405
|
+
11943,
|
|
406
406
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
407
407
|
)),
|
|
408
408
|
isFeatured: true,
|
|
409
409
|
icon: setupIcon,
|
|
410
410
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
411
411
|
next: 'Setup',
|
|
412
|
-
walkthroughPageTitle: ( localize(
|
|
412
|
+
walkthroughPageTitle: ( localize(11944, 'Setup VS Code Accessibility')),
|
|
413
413
|
content: {
|
|
414
414
|
type: 'steps',
|
|
415
415
|
steps: [
|
|
416
416
|
{
|
|
417
417
|
id: 'accessibilityHelp',
|
|
418
|
-
title: ( localize(
|
|
418
|
+
title: ( localize(11945, "Use the accessibility help dialog to learn about features")),
|
|
419
419
|
description: ( localize(
|
|
420
|
-
|
|
420
|
+
11946,
|
|
421
421
|
"The accessibility help dialog provides information about what to expect from a feature and the commands/keybindings to operate them.\n With focus in an editor, terminal, notebook, chat response, comment, or debug console, the relevant dialog can be opened with the Open Accessibility Help command.\n{0}",
|
|
422
|
-
Button(( localize(
|
|
422
|
+
Button(( localize(11947, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
423
423
|
)),
|
|
424
424
|
media: {
|
|
425
425
|
type: 'markdown', path: 'empty'
|
|
@@ -428,13 +428,13 @@ const walkthroughs = [
|
|
|
428
428
|
{
|
|
429
429
|
id: 'accessibleView',
|
|
430
430
|
title: ( localize(
|
|
431
|
-
|
|
431
|
+
11948,
|
|
432
432
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
433
433
|
)),
|
|
434
434
|
description: ( localize(
|
|
435
|
-
|
|
435
|
+
11949,
|
|
436
436
|
"The accessible view is available for the terminal, hovers, notifications, comments, notebook output, chat responses, inline completions, and debug console output.\n With focus in any of those features, it can be opened with the Open Accessible View command.\n{0}",
|
|
437
|
-
Button(( localize(
|
|
437
|
+
Button(( localize(11950, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
438
438
|
)),
|
|
439
439
|
media: {
|
|
440
440
|
type: 'markdown', path: 'empty'
|
|
@@ -442,11 +442,11 @@ const walkthroughs = [
|
|
|
442
442
|
},
|
|
443
443
|
{
|
|
444
444
|
id: 'verbositySettings',
|
|
445
|
-
title: ( localize(
|
|
445
|
+
title: ( localize(11951, "Control the verbosity of aria labels")),
|
|
446
446
|
description: ( localize(
|
|
447
|
-
|
|
447
|
+
11952,
|
|
448
448
|
"Screen reader verbosity settings exist for features around the workbench so that once a user is familiar with a feature, they can avoid hearing hints about how to operate it. For example, features for which an accessibility help dialog exists will indicate how to open the dialog until the verbosity setting for that feature has been disabled.\n These and other accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
449
|
-
Button(( localize(
|
|
449
|
+
Button(( localize(11953, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
450
450
|
)),
|
|
451
451
|
media: {
|
|
452
452
|
type: 'markdown', path: 'empty'
|
|
@@ -454,21 +454,21 @@ const walkthroughs = [
|
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
456
|
id: 'commandPaletteTaskAccessibility',
|
|
457
|
-
title: ( localize(
|
|
457
|
+
title: ( localize(11954, "Unlock productivity with the Command Palette ")),
|
|
458
458
|
description: ( localize(
|
|
459
|
-
|
|
459
|
+
11955,
|
|
460
460
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
461
|
-
Button(( localize(
|
|
461
|
+
Button(( localize(11922, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
462
462
|
)),
|
|
463
463
|
media: { type: 'markdown', path: 'empty' },
|
|
464
464
|
},
|
|
465
465
|
{
|
|
466
466
|
id: 'keybindingsAccessibility',
|
|
467
|
-
title: ( localize(
|
|
467
|
+
title: ( localize(11956, "Customize your keyboard shortcuts")),
|
|
468
468
|
description: ( localize(
|
|
469
|
-
|
|
469
|
+
11957,
|
|
470
470
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
471
|
-
Button(( localize(
|
|
471
|
+
Button(( localize(11958, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
472
472
|
)),
|
|
473
473
|
media: {
|
|
474
474
|
type: 'markdown', path: 'empty',
|
|
@@ -477,14 +477,14 @@ const walkthroughs = [
|
|
|
477
477
|
{
|
|
478
478
|
id: 'accessibilitySignals',
|
|
479
479
|
title: ( localize(
|
|
480
|
-
|
|
480
|
+
11959,
|
|
481
481
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
482
482
|
)),
|
|
483
483
|
description: ( localize(
|
|
484
|
-
|
|
484
|
+
11960,
|
|
485
485
|
"Accessibility sounds and announcements are played around the workbench for different events.\n These can be discovered and configured using the List Signal Sounds and List Signal Announcements commands.\n{0}\n{1}",
|
|
486
|
-
Button(( localize(
|
|
487
|
-
Button(( localize(
|
|
486
|
+
Button(( localize(11961, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
487
|
+
Button(( localize(11962, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
488
488
|
)),
|
|
489
489
|
media: {
|
|
490
490
|
type: 'markdown', path: 'empty'
|
|
@@ -493,13 +493,13 @@ const walkthroughs = [
|
|
|
493
493
|
{
|
|
494
494
|
id: 'hover',
|
|
495
495
|
title: ( localize(
|
|
496
|
-
|
|
496
|
+
11963,
|
|
497
497
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
498
498
|
)),
|
|
499
499
|
description: ( localize(
|
|
500
|
-
|
|
500
|
+
11964,
|
|
501
501
|
"While focus is in the editor on a variable or symbol, a hover can be can be focused with the Show or Open Hover command.\n{0}",
|
|
502
|
-
Button(( localize(
|
|
502
|
+
Button(( localize(11965, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
503
503
|
)),
|
|
504
504
|
media: {
|
|
505
505
|
type: 'markdown', path: 'empty'
|
|
@@ -507,11 +507,11 @@ const walkthroughs = [
|
|
|
507
507
|
},
|
|
508
508
|
{
|
|
509
509
|
id: 'goToSymbol',
|
|
510
|
-
title: ( localize(
|
|
510
|
+
title: ( localize(11966, "Navigate to symbols in a file")),
|
|
511
511
|
description: ( localize(
|
|
512
|
-
|
|
512
|
+
11967,
|
|
513
513
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
514
|
-
Button(( localize(
|
|
514
|
+
Button(( localize(11968, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
515
515
|
)),
|
|
516
516
|
media: {
|
|
517
517
|
type: 'markdown', path: 'empty'
|
|
@@ -520,14 +520,14 @@ const walkthroughs = [
|
|
|
520
520
|
{
|
|
521
521
|
id: 'codeFolding',
|
|
522
522
|
title: ( localize(
|
|
523
|
-
|
|
523
|
+
11969,
|
|
524
524
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
525
525
|
)),
|
|
526
526
|
description: ( localize(
|
|
527
|
-
|
|
527
|
+
11970,
|
|
528
528
|
"Fold or unfold a code section with the Toggle Fold command.\n{0}\n Fold or unfold recursively with the Toggle Fold Recursively Command\n{1}\n",
|
|
529
|
-
Button(( localize(
|
|
530
|
-
Button(( localize(
|
|
529
|
+
Button(( localize(11971, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
530
|
+
Button(( localize(11972, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
531
531
|
)),
|
|
532
532
|
media: {
|
|
533
533
|
type: 'markdown', path: 'empty'
|
|
@@ -535,12 +535,12 @@ const walkthroughs = [
|
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
id: 'intellisense',
|
|
538
|
-
title: ( localize(
|
|
538
|
+
title: ( localize(11973, "Use Intellisense to improve coding efficiency")),
|
|
539
539
|
description: ( localize(
|
|
540
|
-
|
|
540
|
+
11974,
|
|
541
541
|
"Intellisense suggestions can be opened with the Trigger Intellisense command.\n{0}\n Inline intellisense suggestions can be triggered with Trigger Inline Suggestion\n{1}\n Useful settings include editor.inlineCompletionsAccessibilityVerbose and editor.screenReaderAnnounceInlineSuggestion.",
|
|
542
|
-
Button(( localize(
|
|
543
|
-
Button(( localize(
|
|
542
|
+
Button(( localize(11975, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
543
|
+
Button(( localize(11976, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
544
544
|
)),
|
|
545
545
|
media: {
|
|
546
546
|
type: 'markdown', path: 'empty'
|
|
@@ -548,11 +548,11 @@ const walkthroughs = [
|
|
|
548
548
|
},
|
|
549
549
|
{
|
|
550
550
|
id: 'accessibilitySettings',
|
|
551
|
-
title: ( localize(
|
|
551
|
+
title: ( localize(11977, "Configure accessibility settings")),
|
|
552
552
|
description: ( localize(
|
|
553
|
-
|
|
553
|
+
11978,
|
|
554
554
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
555
|
+
Button(( localize(11979, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
556
556
|
)),
|
|
557
557
|
media: { type: 'markdown', path: 'empty' }
|
|
558
558
|
}
|
|
@@ -562,20 +562,20 @@ const walkthroughs = [
|
|
|
562
562
|
{
|
|
563
563
|
id: 'Beginner',
|
|
564
564
|
isFeatured: false,
|
|
565
|
-
title: ( localize(
|
|
565
|
+
title: ( localize(11980, "Learn the Fundamentals")),
|
|
566
566
|
icon: beginnerIcon,
|
|
567
|
-
description: ( localize(
|
|
568
|
-
walkthroughPageTitle: ( localize(
|
|
567
|
+
description: ( localize(11981, "Get an overview of the most essential features")),
|
|
568
|
+
walkthroughPageTitle: ( localize(11982, 'Essential Features')),
|
|
569
569
|
content: {
|
|
570
570
|
type: 'steps',
|
|
571
571
|
steps: [
|
|
572
572
|
{
|
|
573
573
|
id: 'extensions',
|
|
574
|
-
title: ( localize(
|
|
574
|
+
title: ( localize(11911, "Code with extensions")),
|
|
575
575
|
description: ( localize(
|
|
576
|
-
|
|
576
|
+
11983,
|
|
577
577
|
"Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}",
|
|
578
|
-
Button(( localize(
|
|
578
|
+
Button(( localize(11984, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
579
579
|
)),
|
|
580
580
|
when: 'workspacePlatform != \'webworker\'',
|
|
581
581
|
media: {
|
|
@@ -584,11 +584,11 @@ const walkthroughs = [
|
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
id: 'terminal',
|
|
587
|
-
title: ( localize(
|
|
587
|
+
title: ( localize(11985, "Built-in terminal")),
|
|
588
588
|
description: ( localize(
|
|
589
|
-
|
|
589
|
+
11986,
|
|
590
590
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
591
|
-
Button(( localize(
|
|
591
|
+
Button(( localize(11987, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
592
592
|
)),
|
|
593
593
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
594
594
|
media: {
|
|
@@ -597,11 +597,11 @@ const walkthroughs = [
|
|
|
597
597
|
},
|
|
598
598
|
{
|
|
599
599
|
id: 'debugging',
|
|
600
|
-
title: ( localize(
|
|
600
|
+
title: ( localize(11988, "Watch your code in action")),
|
|
601
601
|
description: ( localize(
|
|
602
|
-
|
|
602
|
+
11989,
|
|
603
603
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
604
|
-
Button(( localize(
|
|
604
|
+
Button(( localize(11990, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
605
605
|
)),
|
|
606
606
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
607
607
|
media: {
|
|
@@ -610,11 +610,11 @@ const walkthroughs = [
|
|
|
610
610
|
},
|
|
611
611
|
{
|
|
612
612
|
id: 'scmClone',
|
|
613
|
-
title: ( localize(
|
|
613
|
+
title: ( localize(11991, "Track your code with Git")),
|
|
614
614
|
description: ( localize(
|
|
615
|
-
|
|
615
|
+
11992,
|
|
616
616
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
617
|
-
Button(( localize(
|
|
617
|
+
Button(( localize(11993, "Clone Repository")), 'command:git.clone')
|
|
618
618
|
)),
|
|
619
619
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
620
620
|
media: {
|
|
@@ -623,11 +623,11 @@ const walkthroughs = [
|
|
|
623
623
|
},
|
|
624
624
|
{
|
|
625
625
|
id: 'scmSetup',
|
|
626
|
-
title: ( localize(
|
|
626
|
+
title: ( localize(11991, "Track your code with Git")),
|
|
627
627
|
description: ( localize(
|
|
628
|
-
|
|
628
|
+
11994,
|
|
629
629
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
630
|
-
Button(( localize(
|
|
630
|
+
Button(( localize(11995, "Initialize Git Repository")), 'command:git.init')
|
|
631
631
|
)),
|
|
632
632
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
633
633
|
media: {
|
|
@@ -636,11 +636,11 @@ const walkthroughs = [
|
|
|
636
636
|
},
|
|
637
637
|
{
|
|
638
638
|
id: 'scm',
|
|
639
|
-
title: ( localize(
|
|
639
|
+
title: ( localize(11991, "Track your code with Git")),
|
|
640
640
|
description: ( localize(
|
|
641
|
-
|
|
641
|
+
11996,
|
|
642
642
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
643
|
-
Button(( localize(
|
|
643
|
+
Button(( localize(11997, "Open Source Control")), 'command:workbench.view.scm')
|
|
644
644
|
)),
|
|
645
645
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
646
646
|
media: {
|
|
@@ -649,11 +649,11 @@ const walkthroughs = [
|
|
|
649
649
|
},
|
|
650
650
|
{
|
|
651
651
|
id: 'installGit',
|
|
652
|
-
title: ( localize(
|
|
652
|
+
title: ( localize(11998, "Install Git")),
|
|
653
653
|
description: ( localize(
|
|
654
|
-
|
|
654
|
+
11999,
|
|
655
655
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
656
|
-
Button(( localize(
|
|
656
|
+
Button(( localize(12000, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
657
657
|
'[',
|
|
658
658
|
'](command:workbench.action.reloadWindow)'
|
|
659
659
|
)),
|
|
@@ -667,12 +667,12 @@ const walkthroughs = [
|
|
|
667
667
|
},
|
|
668
668
|
{
|
|
669
669
|
id: 'tasks',
|
|
670
|
-
title: ( localize(
|
|
670
|
+
title: ( localize(12001, "Automate your project tasks")),
|
|
671
671
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
672
672
|
description: ( localize(
|
|
673
|
-
|
|
673
|
+
12002,
|
|
674
674
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
675
|
-
Button(( localize(
|
|
675
|
+
Button(( localize(12003, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
676
676
|
)),
|
|
677
677
|
media: {
|
|
678
678
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -680,11 +680,11 @@ const walkthroughs = [
|
|
|
680
680
|
},
|
|
681
681
|
{
|
|
682
682
|
id: 'shortcuts',
|
|
683
|
-
title: ( localize(
|
|
683
|
+
title: ( localize(12004, "Customize your shortcuts")),
|
|
684
684
|
description: ( localize(
|
|
685
|
-
|
|
685
|
+
12005,
|
|
686
686
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
687
|
-
Button(( localize(
|
|
687
|
+
Button(( localize(11958, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
688
688
|
)),
|
|
689
689
|
media: {
|
|
690
690
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -692,12 +692,12 @@ const walkthroughs = [
|
|
|
692
692
|
},
|
|
693
693
|
{
|
|
694
694
|
id: 'workspaceTrust',
|
|
695
|
-
title: ( localize(
|
|
695
|
+
title: ( localize(12006, "Safely browse and edit code")),
|
|
696
696
|
description: ( localize(
|
|
697
|
-
|
|
697
|
+
12007,
|
|
698
698
|
"{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.",
|
|
699
|
-
Button(( localize(
|
|
700
|
-
Button(( localize(
|
|
699
|
+
Button(( localize(12008, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
700
|
+
Button(( localize(12009, "enable trust")), 'command:toSide:workbench.trust.manage')
|
|
701
701
|
)),
|
|
702
702
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
703
703
|
media: {
|
|
@@ -709,20 +709,20 @@ const walkthroughs = [
|
|
|
709
709
|
},
|
|
710
710
|
{
|
|
711
711
|
id: 'notebooks',
|
|
712
|
-
title: ( localize(
|
|
712
|
+
title: ( localize(12010, "Customize Notebooks")),
|
|
713
713
|
description: '',
|
|
714
714
|
icon: setupIcon,
|
|
715
715
|
isFeatured: false,
|
|
716
716
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
717
|
-
walkthroughPageTitle: ( localize(
|
|
717
|
+
walkthroughPageTitle: ( localize(12011, 'Notebooks')),
|
|
718
718
|
content: {
|
|
719
719
|
type: 'steps',
|
|
720
720
|
steps: [
|
|
721
721
|
{
|
|
722
722
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
723
723
|
id: 'notebookProfile',
|
|
724
|
-
title: ( localize(
|
|
725
|
-
description: ( localize(
|
|
724
|
+
title: ( localize(12012, "Select the layout for your notebooks")),
|
|
725
|
+
description: ( localize(12013, "Get notebooks to feel just the way you prefer")),
|
|
726
726
|
when: 'userHasOpenedNotebook',
|
|
727
727
|
media: {
|
|
728
728
|
type: 'markdown', path: 'notebookProfile'
|
|
@@ -733,20 +733,20 @@ const walkthroughs = [
|
|
|
733
733
|
},
|
|
734
734
|
{
|
|
735
735
|
id: `${NEW_WELCOME_EXPERIENCE}`,
|
|
736
|
-
title: ( localize(
|
|
737
|
-
description: ( localize(
|
|
736
|
+
title: ( localize(12014, "Get started with VS Code")),
|
|
737
|
+
description: ( localize(12015, "Supercharge coding with AI")),
|
|
738
738
|
isFeatured: false,
|
|
739
739
|
icon: setupIcon,
|
|
740
740
|
when: '!isWeb',
|
|
741
|
-
walkthroughPageTitle: ( localize(
|
|
741
|
+
walkthroughPageTitle: ( localize(12016, 'Set up VS Code')),
|
|
742
742
|
content: {
|
|
743
743
|
type: 'steps',
|
|
744
744
|
steps: [
|
|
745
745
|
{
|
|
746
746
|
id: 'copilotSetup.chat',
|
|
747
|
-
title: ( localize(
|
|
747
|
+
title: ( localize(12017, "Agent mode")),
|
|
748
748
|
description: ( localize(
|
|
749
|
-
|
|
749
|
+
12018,
|
|
750
750
|
"Analyzes the problem, plans next steps, and makes changes for you."
|
|
751
751
|
)),
|
|
752
752
|
media: {
|
|
@@ -755,19 +755,19 @@ const walkthroughs = [
|
|
|
755
755
|
},
|
|
756
756
|
{
|
|
757
757
|
id: 'copilotSetup.inline',
|
|
758
|
-
title: ( localize(
|
|
759
|
-
description: ( localize(
|
|
758
|
+
title: ( localize(12019, "Next edit suggestions")),
|
|
759
|
+
description: ( localize(12020, "Get code suggestions that predict your next edit.")),
|
|
760
760
|
media: {
|
|
761
761
|
type: 'svg', altText: 'Next edit suggestions', path: 'ai-powered-suggestions.svg'
|
|
762
762
|
},
|
|
763
763
|
},
|
|
764
764
|
{
|
|
765
765
|
id: 'copilotSetup.customize',
|
|
766
|
-
title: ( localize(
|
|
766
|
+
title: ( localize(12021, "Personalized to how you work")),
|
|
767
767
|
description: ( localize(
|
|
768
|
-
|
|
768
|
+
12022,
|
|
769
769
|
"Swap models, add agent mode tools, and create personalized instructions.\n{0}",
|
|
770
|
-
Button(( localize(
|
|
770
|
+
Button(( localize(12023, "Set up AI")), 'command:workbench.action.chat.triggerSetupWithoutDialog')
|
|
771
771
|
)),
|
|
772
772
|
media: {
|
|
773
773
|
type: 'svg', altText: 'Personalize', path: 'customize-ai.svg'
|
|
@@ -775,21 +775,21 @@ const walkthroughs = [
|
|
|
775
775
|
},
|
|
776
776
|
{
|
|
777
777
|
id: 'newCommandPaletteTask',
|
|
778
|
-
title: ( localize(
|
|
778
|
+
title: ( localize(12024, "All commands within reach")),
|
|
779
779
|
description: ( localize(
|
|
780
|
-
|
|
780
|
+
11921,
|
|
781
781
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
782
|
-
Button(( localize(
|
|
782
|
+
Button(( localize(11922, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
783
783
|
)),
|
|
784
784
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
785
785
|
},
|
|
786
786
|
{
|
|
787
787
|
id: 'newPickColorTheme',
|
|
788
|
-
title: ( localize(
|
|
788
|
+
title: ( localize(11908, "Choose your theme")),
|
|
789
789
|
description: ( localize(
|
|
790
|
-
|
|
790
|
+
11909,
|
|
791
791
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
792
|
-
Button(( localize(
|
|
792
|
+
Button(( localize(11910, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
793
793
|
)),
|
|
794
794
|
completionEvents: [
|
|
795
795
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -799,11 +799,11 @@ const walkthroughs = [
|
|
|
799
799
|
},
|
|
800
800
|
{
|
|
801
801
|
id: 'newFindLanguageExtensions',
|
|
802
|
-
title: ( localize(
|
|
802
|
+
title: ( localize(12025, "Support for all languages")),
|
|
803
803
|
description: ( localize(
|
|
804
|
-
|
|
804
|
+
12026,
|
|
805
805
|
"Install the language extensions you need in your toolkit.\n{0}",
|
|
806
|
-
Button(( localize(
|
|
806
|
+
Button(( localize(11916, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
807
807
|
)),
|
|
808
808
|
when: 'workspacePlatform != \'webworker\'',
|
|
809
809
|
media: {
|
|
@@ -812,11 +812,11 @@ const walkthroughs = [
|
|
|
812
812
|
},
|
|
813
813
|
{
|
|
814
814
|
id: 'newSettingsAndSync',
|
|
815
|
-
title: ( localize(
|
|
815
|
+
title: ( localize(12027, "Customize every aspect of VS Code")),
|
|
816
816
|
description: ( localize(
|
|
817
|
-
|
|
817
|
+
12028,
|
|
818
818
|
"[Back up and sync](command:workbench.userDataSync.actions.turnOn) settings across all your devices.\n{0}",
|
|
819
|
-
Button(( localize(
|
|
819
|
+
Button(( localize(11919, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
820
820
|
)),
|
|
821
821
|
when: 'syncStatus != uninitialized',
|
|
822
822
|
completionEvents: ['onEvent:sync-enabled'],
|