@codingame/monaco-vscode-walkthrough-service-override 20.5.0 → 21.0.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 +28 -39
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +1 -11
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +49 -441
- 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/gettingStartedDetailsRenderer.js +23 -1
- 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.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +5 -18
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css +0 -456
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +3 -10
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +157 -300
- 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/walkThroughPart.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +6 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -10,18 +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 defaultChat = {
|
|
13
|
-
documentationUrl: product.defaultChatAgent?.documentationUrl ?? ''
|
|
14
|
-
manageSettingsUrl: product.defaultChatAgent?.manageSettingsUrl ?? '',
|
|
15
|
-
provider: product.defaultChatAgent?.provider ?? { default: { name: '' } },
|
|
16
|
-
publicCodeMatchesUrl: product.defaultChatAgent?.publicCodeMatchesUrl ?? '',
|
|
17
|
-
};
|
|
18
|
-
const copilotSettingsMessage = ( localize(
|
|
19
|
-
12406,
|
|
20
|
-
"{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.",
|
|
21
|
-
defaultChat.provider.default.name,
|
|
22
|
-
defaultChat.publicCodeMatchesUrl,
|
|
23
|
-
defaultChat.manageSettingsUrl
|
|
24
|
-
));
|
|
13
|
+
documentationUrl: product.defaultChatAgent?.documentationUrl ?? ''};
|
|
25
14
|
class GettingStartedContentProviderRegistry {
|
|
26
15
|
constructor() {
|
|
27
16
|
this.providers = ( new Map());
|
|
@@ -38,14 +27,13 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
|
|
|
38
27
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
|
|
39
28
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
40
29
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
|
|
41
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
42
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
43
|
-
const NEW_WELCOME_EXPERIENCE = 'NewWelcomeExperience';
|
|
30
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12618, "Icon used for the setup category of welcome page")));
|
|
31
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12619, "Icon used for the beginner category of welcome page")));
|
|
44
32
|
const startEntries = [
|
|
45
33
|
{
|
|
46
34
|
id: 'welcome.showNewFileEntries',
|
|
47
|
-
title: ( localize(
|
|
48
|
-
description: ( localize(
|
|
35
|
+
title: ( localize(12620, "New File...")),
|
|
36
|
+
description: ( localize(12621, "Open a new untitled text file, notebook, or custom editor.")),
|
|
49
37
|
icon: Codicon.newFile,
|
|
50
38
|
content: {
|
|
51
39
|
type: 'startEntry',
|
|
@@ -54,8 +42,8 @@ const startEntries = [
|
|
|
54
42
|
},
|
|
55
43
|
{
|
|
56
44
|
id: 'topLevelOpenMac',
|
|
57
|
-
title: ( localize(
|
|
58
|
-
description: ( localize(
|
|
45
|
+
title: ( localize(12622, "Open...")),
|
|
46
|
+
description: ( localize(12623, "Open a file or folder to start working")),
|
|
59
47
|
icon: Codicon.folderOpened,
|
|
60
48
|
when: '!isWeb && isMac',
|
|
61
49
|
content: {
|
|
@@ -65,8 +53,8 @@ const startEntries = [
|
|
|
65
53
|
},
|
|
66
54
|
{
|
|
67
55
|
id: 'topLevelOpenFile',
|
|
68
|
-
title: ( localize(
|
|
69
|
-
description: ( localize(
|
|
56
|
+
title: ( localize(12624, "Open File...")),
|
|
57
|
+
description: ( localize(12625, "Open a file to start working")),
|
|
70
58
|
icon: Codicon.goToFile,
|
|
71
59
|
when: 'isWeb || !isMac',
|
|
72
60
|
content: {
|
|
@@ -76,8 +64,8 @@ const startEntries = [
|
|
|
76
64
|
},
|
|
77
65
|
{
|
|
78
66
|
id: 'topLevelOpenFolder',
|
|
79
|
-
title: ( localize(
|
|
80
|
-
description: ( localize(
|
|
67
|
+
title: ( localize(12626, "Open Folder...")),
|
|
68
|
+
description: ( localize(12627, "Open a folder to start working")),
|
|
81
69
|
icon: Codicon.folderOpened,
|
|
82
70
|
when: '!isWeb && !isMac',
|
|
83
71
|
content: {
|
|
@@ -87,8 +75,8 @@ const startEntries = [
|
|
|
87
75
|
},
|
|
88
76
|
{
|
|
89
77
|
id: 'topLevelOpenFolderWeb',
|
|
90
|
-
title: ( localize(
|
|
91
|
-
description: ( localize(
|
|
78
|
+
title: ( localize(12626, "Open Folder...")),
|
|
79
|
+
description: ( localize(12627, "Open a folder to start working")),
|
|
92
80
|
icon: Codicon.folderOpened,
|
|
93
81
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
94
82
|
content: {
|
|
@@ -98,8 +86,8 @@ const startEntries = [
|
|
|
98
86
|
},
|
|
99
87
|
{
|
|
100
88
|
id: 'topLevelGitClone',
|
|
101
|
-
title: ( localize(
|
|
102
|
-
description: ( localize(
|
|
89
|
+
title: ( localize(12628, "Clone Git Repository...")),
|
|
90
|
+
description: ( localize(12629, "Clone a remote repository to a local folder")),
|
|
103
91
|
when: 'config.git.enabled && !git.missing',
|
|
104
92
|
icon: Codicon.sourceControl,
|
|
105
93
|
content: {
|
|
@@ -109,9 +97,9 @@ const startEntries = [
|
|
|
109
97
|
},
|
|
110
98
|
{
|
|
111
99
|
id: 'topLevelGitOpen',
|
|
112
|
-
title: ( localize(
|
|
100
|
+
title: ( localize(12630, "Open Repository...")),
|
|
113
101
|
description: ( localize(
|
|
114
|
-
|
|
102
|
+
12631,
|
|
115
103
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
116
104
|
)),
|
|
117
105
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -123,8 +111,8 @@ const startEntries = [
|
|
|
123
111
|
},
|
|
124
112
|
{
|
|
125
113
|
id: 'topLevelRemoteOpen',
|
|
126
|
-
title: ( localize(
|
|
127
|
-
description: ( localize(
|
|
114
|
+
title: ( localize(12632, "Connect to...")),
|
|
115
|
+
description: ( localize(12633, "Connect to remote development workspaces.")),
|
|
128
116
|
when: '!isWeb',
|
|
129
117
|
icon: Codicon.remote,
|
|
130
118
|
content: {
|
|
@@ -134,8 +122,8 @@ const startEntries = [
|
|
|
134
122
|
},
|
|
135
123
|
{
|
|
136
124
|
id: 'topLevelOpenTunnel',
|
|
137
|
-
title: ( localize(
|
|
138
|
-
description: ( localize(
|
|
125
|
+
title: ( localize(12634, "Open Tunnel...")),
|
|
126
|
+
description: ( localize(12635, "Connect to a remote machine through a Tunnel")),
|
|
139
127
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
140
128
|
icon: Codicon.remote,
|
|
141
129
|
content: {
|
|
@@ -145,8 +133,8 @@ const startEntries = [
|
|
|
145
133
|
},
|
|
146
134
|
{
|
|
147
135
|
id: 'topLevelNewWorkspaceChat',
|
|
148
|
-
title: ( localize(
|
|
149
|
-
description: ( localize(
|
|
136
|
+
title: ( localize(12636, "Generate New Workspace...")),
|
|
137
|
+
description: ( localize(12637, "Chat to create a new workspace")),
|
|
150
138
|
icon: Codicon.chatSparkle,
|
|
151
139
|
when: '!isWeb && !chatSetupHidden',
|
|
152
140
|
content: {
|
|
@@ -156,15 +144,15 @@ const startEntries = [
|
|
|
156
144
|
},
|
|
157
145
|
];
|
|
158
146
|
const Button = (title, href) => `[${title}](${href})`;
|
|
159
|
-
const CopilotStepTitle = ( localize(
|
|
147
|
+
const CopilotStepTitle = ( localize(12638, "Use AI features with Copilot for free"));
|
|
160
148
|
const CopilotDescription = ( localize(
|
|
161
|
-
|
|
149
|
+
12639,
|
|
162
150
|
"You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code and much more using natural language.",
|
|
163
151
|
defaultChat.documentationUrl ?? ''
|
|
164
152
|
));
|
|
165
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
166
|
-
const CopilotSignedInButton = Button(( localize(
|
|
167
|
-
const CopilotCompleteButton = Button(( localize(
|
|
153
|
+
const CopilotSignedOutButton = Button(( localize(12640, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
154
|
+
const CopilotSignedInButton = Button(( localize(12641, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
155
|
+
const CopilotCompleteButton = Button(( localize(12642, "Chat with Copilot")), 'command:workbench.action.chat.open');
|
|
168
156
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
169
157
|
const description = includeTerms ?
|
|
170
158
|
`${CopilotDescription}\n\n${button}` :
|
|
@@ -182,12 +170,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
182
170
|
const walkthroughs = [
|
|
183
171
|
{
|
|
184
172
|
id: 'Setup',
|
|
185
|
-
title: ( localize(
|
|
186
|
-
description: ( localize(
|
|
173
|
+
title: ( localize(12643, "Get started with VS Code")),
|
|
174
|
+
description: ( localize(12644, "Customize your editor, learn the basics, and start coding")),
|
|
187
175
|
isFeatured: true,
|
|
188
176
|
icon: setupIcon,
|
|
189
177
|
when: '!isWeb',
|
|
190
|
-
walkthroughPageTitle: ( localize(
|
|
178
|
+
walkthroughPageTitle: ( localize(12645, 'Setup VS Code')),
|
|
191
179
|
next: 'Beginner',
|
|
192
180
|
content: {
|
|
193
181
|
type: 'steps',
|
|
@@ -197,11 +185,11 @@ const walkthroughs = [
|
|
|
197
185
|
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
|
|
198
186
|
{
|
|
199
187
|
id: 'pickColorTheme',
|
|
200
|
-
title: ( localize(
|
|
188
|
+
title: ( localize(12646, "Choose your theme")),
|
|
201
189
|
description: ( localize(
|
|
202
|
-
|
|
190
|
+
12647,
|
|
203
191
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
204
|
-
Button(( localize(
|
|
192
|
+
Button(( localize(12648, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
205
193
|
)),
|
|
206
194
|
completionEvents: [
|
|
207
195
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -209,76 +197,13 @@ const walkthroughs = [
|
|
|
209
197
|
],
|
|
210
198
|
media: { type: 'markdown', path: 'theme_picker', }
|
|
211
199
|
},
|
|
212
|
-
{
|
|
213
|
-
id: 'extensionsWeb',
|
|
214
|
-
title: ( localize(12438, "Code with extensions")),
|
|
215
|
-
description: ( localize(
|
|
216
|
-
12439,
|
|
217
|
-
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
218
|
-
Button(( localize(12440, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
219
|
-
)),
|
|
220
|
-
when: 'workspacePlatform == \'webworker\'',
|
|
221
|
-
media: {
|
|
222
|
-
type: 'svg', altText: 'VS Code extension marketplace with featured language extensions', path: 'extensions-web.svg'
|
|
223
|
-
},
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
id: 'findLanguageExtensions',
|
|
227
|
-
title: ( localize(12441, "Rich support for all your languages")),
|
|
228
|
-
description: ( localize(
|
|
229
|
-
12442,
|
|
230
|
-
"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}",
|
|
231
|
-
Button(( localize(12443, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
232
|
-
)),
|
|
233
|
-
when: 'workspacePlatform != \'webworker\'',
|
|
234
|
-
media: {
|
|
235
|
-
type: 'svg', altText: 'Language extensions', path: 'languages.svg'
|
|
236
|
-
},
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
id: 'settingsAndSync',
|
|
240
|
-
title: ( localize(12444, "Tune your settings")),
|
|
241
|
-
description: ( localize(
|
|
242
|
-
12445,
|
|
243
|
-
"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}",
|
|
244
|
-
Button(( localize(12446, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
245
|
-
)),
|
|
246
|
-
when: 'syncStatus != uninitialized',
|
|
247
|
-
completionEvents: ['onEvent:sync-enabled'],
|
|
248
|
-
media: {
|
|
249
|
-
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
250
|
-
},
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
id: 'commandPaletteTask',
|
|
254
|
-
title: ( localize(12447, "Unlock productivity with the Command Palette ")),
|
|
255
|
-
description: ( localize(
|
|
256
|
-
12448,
|
|
257
|
-
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
258
|
-
Button(( localize(12449, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
259
|
-
)),
|
|
260
|
-
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
id: 'quickOpen',
|
|
264
|
-
title: ( localize(12450, "Quickly navigate between your files")),
|
|
265
|
-
description: ( localize(
|
|
266
|
-
12451,
|
|
267
|
-
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
268
|
-
Button(( localize(12452, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
269
|
-
)),
|
|
270
|
-
when: 'workspaceFolderCount != 0',
|
|
271
|
-
media: {
|
|
272
|
-
type: 'svg', altText: 'Go to file in quick search.', path: 'search.svg'
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
200
|
{
|
|
276
201
|
id: 'videoTutorial',
|
|
277
|
-
title: ( localize(
|
|
202
|
+
title: ( localize(12649, "Watch video tutorials")),
|
|
278
203
|
description: ( localize(
|
|
279
|
-
|
|
204
|
+
12650,
|
|
280
205
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
281
|
-
Button(( localize(
|
|
206
|
+
Button(( localize(12651, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
282
207
|
)),
|
|
283
208
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
284
209
|
}
|
|
@@ -287,23 +212,23 @@ const walkthroughs = [
|
|
|
287
212
|
},
|
|
288
213
|
{
|
|
289
214
|
id: 'SetupWeb',
|
|
290
|
-
title: ( localize(
|
|
291
|
-
description: ( localize(
|
|
215
|
+
title: ( localize(12652, "Get Started with VS Code for the Web")),
|
|
216
|
+
description: ( localize(12653, "Customize your editor, learn the basics, and start coding")),
|
|
292
217
|
isFeatured: true,
|
|
293
218
|
icon: setupIcon,
|
|
294
219
|
when: 'isWeb',
|
|
295
220
|
next: 'Beginner',
|
|
296
|
-
walkthroughPageTitle: ( localize(
|
|
221
|
+
walkthroughPageTitle: ( localize(12654, 'Setup VS Code Web')),
|
|
297
222
|
content: {
|
|
298
223
|
type: 'steps',
|
|
299
224
|
steps: [
|
|
300
225
|
{
|
|
301
226
|
id: 'pickColorThemeWeb',
|
|
302
|
-
title: ( localize(
|
|
227
|
+
title: ( localize(12646, "Choose your theme")),
|
|
303
228
|
description: ( localize(
|
|
304
|
-
|
|
229
|
+
12647,
|
|
305
230
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
306
|
-
Button(( localize(
|
|
231
|
+
Button(( localize(12648, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
307
232
|
)),
|
|
308
233
|
completionEvents: [
|
|
309
234
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -313,11 +238,11 @@ const walkthroughs = [
|
|
|
313
238
|
},
|
|
314
239
|
{
|
|
315
240
|
id: 'menuBarWeb',
|
|
316
|
-
title: ( localize(
|
|
241
|
+
title: ( localize(12655, "Just the right amount of UI")),
|
|
317
242
|
description: ( localize(
|
|
318
|
-
|
|
243
|
+
12656,
|
|
319
244
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
320
|
-
Button(( localize(
|
|
245
|
+
Button(( localize(12657, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
321
246
|
)),
|
|
322
247
|
when: 'isWeb',
|
|
323
248
|
media: {
|
|
@@ -326,11 +251,11 @@ const walkthroughs = [
|
|
|
326
251
|
},
|
|
327
252
|
{
|
|
328
253
|
id: 'extensionsWebWeb',
|
|
329
|
-
title: ( localize(
|
|
254
|
+
title: ( localize(12658, "Code with extensions")),
|
|
330
255
|
description: ( localize(
|
|
331
|
-
|
|
256
|
+
12659,
|
|
332
257
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
333
|
-
Button(( localize(
|
|
258
|
+
Button(( localize(12660, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
334
259
|
)),
|
|
335
260
|
when: 'workspacePlatform == \'webworker\'',
|
|
336
261
|
media: {
|
|
@@ -339,11 +264,11 @@ const walkthroughs = [
|
|
|
339
264
|
},
|
|
340
265
|
{
|
|
341
266
|
id: 'findLanguageExtensionsWeb',
|
|
342
|
-
title: ( localize(
|
|
267
|
+
title: ( localize(12661, "Rich support for all your languages")),
|
|
343
268
|
description: ( localize(
|
|
344
|
-
|
|
269
|
+
12662,
|
|
345
270
|
"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}",
|
|
346
|
-
Button(( localize(
|
|
271
|
+
Button(( localize(12663, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
347
272
|
)),
|
|
348
273
|
when: 'workspacePlatform != \'webworker\'',
|
|
349
274
|
media: {
|
|
@@ -352,11 +277,11 @@ const walkthroughs = [
|
|
|
352
277
|
},
|
|
353
278
|
{
|
|
354
279
|
id: 'settingsSyncWeb',
|
|
355
|
-
title: ( localize(
|
|
280
|
+
title: ( localize(12664, "Sync settings across devices")),
|
|
356
281
|
description: ( localize(
|
|
357
|
-
|
|
282
|
+
12665,
|
|
358
283
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
359
|
-
Button(( localize(
|
|
284
|
+
Button(( localize(12666, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
360
285
|
)),
|
|
361
286
|
when: 'syncStatus != uninitialized',
|
|
362
287
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -366,22 +291,22 @@ const walkthroughs = [
|
|
|
366
291
|
},
|
|
367
292
|
{
|
|
368
293
|
id: 'commandPaletteTaskWeb',
|
|
369
|
-
title: ( localize(
|
|
294
|
+
title: ( localize(12667, "Unlock productivity with the Command Palette ")),
|
|
370
295
|
description: ( localize(
|
|
371
|
-
|
|
296
|
+
12668,
|
|
372
297
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
373
|
-
Button(( localize(
|
|
298
|
+
Button(( localize(12669, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
374
299
|
)),
|
|
375
300
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
376
301
|
},
|
|
377
302
|
{
|
|
378
303
|
id: 'pickAFolderTask-WebWeb',
|
|
379
|
-
title: ( localize(
|
|
304
|
+
title: ( localize(12670, "Open up your code")),
|
|
380
305
|
description: ( localize(
|
|
381
|
-
|
|
306
|
+
12671,
|
|
382
307
|
"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}",
|
|
383
|
-
Button(( localize(
|
|
384
|
-
Button(( localize(
|
|
308
|
+
Button(( localize(12672, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
309
|
+
Button(( localize(12673, "Open Repository")), 'command:remoteHub.openRepository')
|
|
385
310
|
)),
|
|
386
311
|
when: 'workspaceFolderCount == 0',
|
|
387
312
|
media: {
|
|
@@ -390,11 +315,11 @@ const walkthroughs = [
|
|
|
390
315
|
},
|
|
391
316
|
{
|
|
392
317
|
id: 'quickOpenWeb',
|
|
393
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(12674, "Quickly navigate between your files")),
|
|
394
319
|
description: ( localize(
|
|
395
|
-
|
|
320
|
+
12675,
|
|
396
321
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
397
|
-
Button(( localize(
|
|
322
|
+
Button(( localize(12676, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
398
323
|
)),
|
|
399
324
|
when: 'workspaceFolderCount != 0',
|
|
400
325
|
media: {
|
|
@@ -406,26 +331,26 @@ const walkthroughs = [
|
|
|
406
331
|
},
|
|
407
332
|
{
|
|
408
333
|
id: 'SetupAccessibility',
|
|
409
|
-
title: ( localize(
|
|
334
|
+
title: ( localize(12677, "Get Started with Accessibility Features")),
|
|
410
335
|
description: ( localize(
|
|
411
|
-
|
|
336
|
+
12678,
|
|
412
337
|
"Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
|
|
413
338
|
)),
|
|
414
339
|
isFeatured: true,
|
|
415
340
|
icon: setupIcon,
|
|
416
341
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
417
342
|
next: 'Setup',
|
|
418
|
-
walkthroughPageTitle: ( localize(
|
|
343
|
+
walkthroughPageTitle: ( localize(12679, 'Setup VS Code Accessibility')),
|
|
419
344
|
content: {
|
|
420
345
|
type: 'steps',
|
|
421
346
|
steps: [
|
|
422
347
|
{
|
|
423
348
|
id: 'accessibilityHelp',
|
|
424
|
-
title: ( localize(
|
|
349
|
+
title: ( localize(12680, "Use the accessibility help dialog to learn about features")),
|
|
425
350
|
description: ( localize(
|
|
426
|
-
|
|
351
|
+
12681,
|
|
427
352
|
"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}",
|
|
428
|
-
Button(( localize(
|
|
353
|
+
Button(( localize(12682, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
429
354
|
)),
|
|
430
355
|
media: {
|
|
431
356
|
type: 'markdown', path: 'empty'
|
|
@@ -434,13 +359,13 @@ const walkthroughs = [
|
|
|
434
359
|
{
|
|
435
360
|
id: 'accessibleView',
|
|
436
361
|
title: ( localize(
|
|
437
|
-
|
|
362
|
+
12683,
|
|
438
363
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
439
364
|
)),
|
|
440
365
|
description: ( localize(
|
|
441
|
-
|
|
366
|
+
12684,
|
|
442
367
|
"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}",
|
|
443
|
-
Button(( localize(
|
|
368
|
+
Button(( localize(12685, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
444
369
|
)),
|
|
445
370
|
media: {
|
|
446
371
|
type: 'markdown', path: 'empty'
|
|
@@ -448,11 +373,11 @@ const walkthroughs = [
|
|
|
448
373
|
},
|
|
449
374
|
{
|
|
450
375
|
id: 'verbositySettings',
|
|
451
|
-
title: ( localize(
|
|
376
|
+
title: ( localize(12686, "Control the verbosity of aria labels")),
|
|
452
377
|
description: ( localize(
|
|
453
|
-
|
|
378
|
+
12687,
|
|
454
379
|
"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}",
|
|
455
|
-
Button(( localize(
|
|
380
|
+
Button(( localize(12688, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
456
381
|
)),
|
|
457
382
|
media: {
|
|
458
383
|
type: 'markdown', path: 'empty'
|
|
@@ -460,21 +385,21 @@ const walkthroughs = [
|
|
|
460
385
|
},
|
|
461
386
|
{
|
|
462
387
|
id: 'commandPaletteTaskAccessibility',
|
|
463
|
-
title: ( localize(
|
|
388
|
+
title: ( localize(12689, "Unlock productivity with the Command Palette ")),
|
|
464
389
|
description: ( localize(
|
|
465
|
-
|
|
390
|
+
12690,
|
|
466
391
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
467
|
-
Button(( localize(
|
|
392
|
+
Button(( localize(12669, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
468
393
|
)),
|
|
469
394
|
media: { type: 'markdown', path: 'empty' },
|
|
470
395
|
},
|
|
471
396
|
{
|
|
472
397
|
id: 'keybindingsAccessibility',
|
|
473
|
-
title: ( localize(
|
|
398
|
+
title: ( localize(12691, "Customize your keyboard shortcuts")),
|
|
474
399
|
description: ( localize(
|
|
475
|
-
|
|
400
|
+
12692,
|
|
476
401
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
477
|
-
Button(( localize(
|
|
402
|
+
Button(( localize(12693, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
478
403
|
)),
|
|
479
404
|
media: {
|
|
480
405
|
type: 'markdown', path: 'empty',
|
|
@@ -483,14 +408,14 @@ const walkthroughs = [
|
|
|
483
408
|
{
|
|
484
409
|
id: 'accessibilitySignals',
|
|
485
410
|
title: ( localize(
|
|
486
|
-
|
|
411
|
+
12694,
|
|
487
412
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
488
413
|
)),
|
|
489
414
|
description: ( localize(
|
|
490
|
-
|
|
415
|
+
12695,
|
|
491
416
|
"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}",
|
|
492
|
-
Button(( localize(
|
|
493
|
-
Button(( localize(
|
|
417
|
+
Button(( localize(12696, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
418
|
+
Button(( localize(12697, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
494
419
|
)),
|
|
495
420
|
media: {
|
|
496
421
|
type: 'markdown', path: 'empty'
|
|
@@ -499,13 +424,13 @@ const walkthroughs = [
|
|
|
499
424
|
{
|
|
500
425
|
id: 'hover',
|
|
501
426
|
title: ( localize(
|
|
502
|
-
|
|
427
|
+
12698,
|
|
503
428
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
504
429
|
)),
|
|
505
430
|
description: ( localize(
|
|
506
|
-
|
|
431
|
+
12699,
|
|
507
432
|
"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}",
|
|
508
|
-
Button(( localize(
|
|
433
|
+
Button(( localize(12700, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
509
434
|
)),
|
|
510
435
|
media: {
|
|
511
436
|
type: 'markdown', path: 'empty'
|
|
@@ -513,11 +438,11 @@ const walkthroughs = [
|
|
|
513
438
|
},
|
|
514
439
|
{
|
|
515
440
|
id: 'goToSymbol',
|
|
516
|
-
title: ( localize(
|
|
441
|
+
title: ( localize(12701, "Navigate to symbols in a file")),
|
|
517
442
|
description: ( localize(
|
|
518
|
-
|
|
443
|
+
12702,
|
|
519
444
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
520
|
-
Button(( localize(
|
|
445
|
+
Button(( localize(12703, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
521
446
|
)),
|
|
522
447
|
media: {
|
|
523
448
|
type: 'markdown', path: 'empty'
|
|
@@ -526,14 +451,14 @@ const walkthroughs = [
|
|
|
526
451
|
{
|
|
527
452
|
id: 'codeFolding',
|
|
528
453
|
title: ( localize(
|
|
529
|
-
|
|
454
|
+
12704,
|
|
530
455
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
531
456
|
)),
|
|
532
457
|
description: ( localize(
|
|
533
|
-
|
|
458
|
+
12705,
|
|
534
459
|
"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",
|
|
535
|
-
Button(( localize(
|
|
536
|
-
Button(( localize(
|
|
460
|
+
Button(( localize(12706, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
461
|
+
Button(( localize(12707, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
537
462
|
)),
|
|
538
463
|
media: {
|
|
539
464
|
type: 'markdown', path: 'empty'
|
|
@@ -541,12 +466,12 @@ const walkthroughs = [
|
|
|
541
466
|
},
|
|
542
467
|
{
|
|
543
468
|
id: 'intellisense',
|
|
544
|
-
title: ( localize(
|
|
469
|
+
title: ( localize(12708, "Use Intellisense to improve coding efficiency")),
|
|
545
470
|
description: ( localize(
|
|
546
|
-
|
|
471
|
+
12709,
|
|
547
472
|
"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.",
|
|
548
|
-
Button(( localize(
|
|
549
|
-
Button(( localize(
|
|
473
|
+
Button(( localize(12710, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
474
|
+
Button(( localize(12711, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
550
475
|
)),
|
|
551
476
|
media: {
|
|
552
477
|
type: 'markdown', path: 'empty'
|
|
@@ -554,11 +479,11 @@ const walkthroughs = [
|
|
|
554
479
|
},
|
|
555
480
|
{
|
|
556
481
|
id: 'accessibilitySettings',
|
|
557
|
-
title: ( localize(
|
|
482
|
+
title: ( localize(12712, "Configure accessibility settings")),
|
|
558
483
|
description: ( localize(
|
|
559
|
-
|
|
484
|
+
12713,
|
|
560
485
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
561
|
-
Button(( localize(
|
|
486
|
+
Button(( localize(12714, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
562
487
|
)),
|
|
563
488
|
media: { type: 'markdown', path: 'empty' }
|
|
564
489
|
}
|
|
@@ -568,20 +493,34 @@ const walkthroughs = [
|
|
|
568
493
|
{
|
|
569
494
|
id: 'Beginner',
|
|
570
495
|
isFeatured: false,
|
|
571
|
-
title: ( localize(
|
|
496
|
+
title: ( localize(12715, "Learn the Fundamentals")),
|
|
572
497
|
icon: beginnerIcon,
|
|
573
|
-
description: ( localize(
|
|
574
|
-
walkthroughPageTitle: ( localize(
|
|
498
|
+
description: ( localize(12716, "Get an overview of the most essential features")),
|
|
499
|
+
walkthroughPageTitle: ( localize(12717, 'Essential Features')),
|
|
575
500
|
content: {
|
|
576
501
|
type: 'steps',
|
|
577
502
|
steps: [
|
|
503
|
+
{
|
|
504
|
+
id: 'settingsAndSync',
|
|
505
|
+
title: ( localize(12718, "Tune your settings")),
|
|
506
|
+
description: ( localize(
|
|
507
|
+
12719,
|
|
508
|
+
"Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
|
|
509
|
+
Button(( localize(12720, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
510
|
+
)),
|
|
511
|
+
when: 'workspacePlatform != \'webworker\' && syncStatus != uninitialized',
|
|
512
|
+
completionEvents: ['onEvent:sync-enabled'],
|
|
513
|
+
media: {
|
|
514
|
+
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
515
|
+
},
|
|
516
|
+
},
|
|
578
517
|
{
|
|
579
518
|
id: 'extensions',
|
|
580
|
-
title: ( localize(
|
|
519
|
+
title: ( localize(12658, "Code with extensions")),
|
|
581
520
|
description: ( localize(
|
|
582
|
-
|
|
521
|
+
12721,
|
|
583
522
|
"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}",
|
|
584
|
-
Button(( localize(
|
|
523
|
+
Button(( localize(12722, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
585
524
|
)),
|
|
586
525
|
when: 'workspacePlatform != \'webworker\'',
|
|
587
526
|
media: {
|
|
@@ -590,11 +529,11 @@ const walkthroughs = [
|
|
|
590
529
|
},
|
|
591
530
|
{
|
|
592
531
|
id: 'terminal',
|
|
593
|
-
title: ( localize(
|
|
532
|
+
title: ( localize(12723, "Built-in terminal")),
|
|
594
533
|
description: ( localize(
|
|
595
|
-
|
|
534
|
+
12724,
|
|
596
535
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
597
|
-
Button(( localize(
|
|
536
|
+
Button(( localize(12725, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
598
537
|
)),
|
|
599
538
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
600
539
|
media: {
|
|
@@ -603,11 +542,11 @@ const walkthroughs = [
|
|
|
603
542
|
},
|
|
604
543
|
{
|
|
605
544
|
id: 'debugging',
|
|
606
|
-
title: ( localize(
|
|
545
|
+
title: ( localize(12726, "Watch your code in action")),
|
|
607
546
|
description: ( localize(
|
|
608
|
-
|
|
547
|
+
12727,
|
|
609
548
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
610
|
-
Button(( localize(
|
|
549
|
+
Button(( localize(12728, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
611
550
|
)),
|
|
612
551
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
613
552
|
media: {
|
|
@@ -616,11 +555,11 @@ const walkthroughs = [
|
|
|
616
555
|
},
|
|
617
556
|
{
|
|
618
557
|
id: 'scmClone',
|
|
619
|
-
title: ( localize(
|
|
558
|
+
title: ( localize(12729, "Track your code with Git")),
|
|
620
559
|
description: ( localize(
|
|
621
|
-
|
|
560
|
+
12730,
|
|
622
561
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
623
|
-
Button(( localize(
|
|
562
|
+
Button(( localize(12731, "Clone Repository")), 'command:git.clone')
|
|
624
563
|
)),
|
|
625
564
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
626
565
|
media: {
|
|
@@ -629,11 +568,11 @@ const walkthroughs = [
|
|
|
629
568
|
},
|
|
630
569
|
{
|
|
631
570
|
id: 'scmSetup',
|
|
632
|
-
title: ( localize(
|
|
571
|
+
title: ( localize(12729, "Track your code with Git")),
|
|
633
572
|
description: ( localize(
|
|
634
|
-
|
|
573
|
+
12732,
|
|
635
574
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
636
|
-
Button(( localize(
|
|
575
|
+
Button(( localize(12733, "Initialize Git Repository")), 'command:git.init')
|
|
637
576
|
)),
|
|
638
577
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
639
578
|
media: {
|
|
@@ -642,11 +581,11 @@ const walkthroughs = [
|
|
|
642
581
|
},
|
|
643
582
|
{
|
|
644
583
|
id: 'scm',
|
|
645
|
-
title: ( localize(
|
|
584
|
+
title: ( localize(12729, "Track your code with Git")),
|
|
646
585
|
description: ( localize(
|
|
647
|
-
|
|
586
|
+
12734,
|
|
648
587
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
649
|
-
Button(( localize(
|
|
588
|
+
Button(( localize(12735, "Open Source Control")), 'command:workbench.view.scm')
|
|
650
589
|
)),
|
|
651
590
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
652
591
|
media: {
|
|
@@ -655,11 +594,11 @@ const walkthroughs = [
|
|
|
655
594
|
},
|
|
656
595
|
{
|
|
657
596
|
id: 'installGit',
|
|
658
|
-
title: ( localize(
|
|
597
|
+
title: ( localize(12736, "Install Git")),
|
|
659
598
|
description: ( localize(
|
|
660
|
-
|
|
599
|
+
12737,
|
|
661
600
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
662
|
-
Button(( localize(
|
|
601
|
+
Button(( localize(12738, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
663
602
|
'[',
|
|
664
603
|
'](command:workbench.action.reloadWindow)'
|
|
665
604
|
)),
|
|
@@ -673,12 +612,12 @@ const walkthroughs = [
|
|
|
673
612
|
},
|
|
674
613
|
{
|
|
675
614
|
id: 'tasks',
|
|
676
|
-
title: ( localize(
|
|
615
|
+
title: ( localize(12739, "Automate your project tasks")),
|
|
677
616
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
678
617
|
description: ( localize(
|
|
679
|
-
|
|
618
|
+
12740,
|
|
680
619
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
681
|
-
Button(( localize(
|
|
620
|
+
Button(( localize(12741, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
682
621
|
)),
|
|
683
622
|
media: {
|
|
684
623
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -686,11 +625,11 @@ const walkthroughs = [
|
|
|
686
625
|
},
|
|
687
626
|
{
|
|
688
627
|
id: 'shortcuts',
|
|
689
|
-
title: ( localize(
|
|
628
|
+
title: ( localize(12742, "Customize your shortcuts")),
|
|
690
629
|
description: ( localize(
|
|
691
|
-
|
|
630
|
+
12743,
|
|
692
631
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
693
|
-
Button(( localize(
|
|
632
|
+
Button(( localize(12693, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
694
633
|
)),
|
|
695
634
|
media: {
|
|
696
635
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -698,12 +637,12 @@ const walkthroughs = [
|
|
|
698
637
|
},
|
|
699
638
|
{
|
|
700
639
|
id: 'workspaceTrust',
|
|
701
|
-
title: ( localize(
|
|
640
|
+
title: ( localize(12744, "Safely browse and edit code")),
|
|
702
641
|
description: ( localize(
|
|
703
|
-
|
|
642
|
+
12745,
|
|
704
643
|
"{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.",
|
|
705
|
-
Button(( localize(
|
|
706
|
-
Button(( localize(
|
|
644
|
+
Button(( localize(12746, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
645
|
+
Button(( localize(12747, "enable trust")), 'command:toSide:workbench.trust.manage')
|
|
707
646
|
)),
|
|
708
647
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
709
648
|
media: {
|
|
@@ -715,20 +654,20 @@ const walkthroughs = [
|
|
|
715
654
|
},
|
|
716
655
|
{
|
|
717
656
|
id: 'notebooks',
|
|
718
|
-
title: ( localize(
|
|
657
|
+
title: ( localize(12748, "Customize Notebooks")),
|
|
719
658
|
description: '',
|
|
720
659
|
icon: setupIcon,
|
|
721
660
|
isFeatured: false,
|
|
722
661
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
723
|
-
walkthroughPageTitle: ( localize(
|
|
662
|
+
walkthroughPageTitle: ( localize(12749, 'Notebooks')),
|
|
724
663
|
content: {
|
|
725
664
|
type: 'steps',
|
|
726
665
|
steps: [
|
|
727
666
|
{
|
|
728
667
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
729
668
|
id: 'notebookProfile',
|
|
730
|
-
title: ( localize(
|
|
731
|
-
description: ( localize(
|
|
669
|
+
title: ( localize(12750, "Select the layout for your notebooks")),
|
|
670
|
+
description: ( localize(12751, "Get notebooks to feel just the way you prefer")),
|
|
732
671
|
when: 'userHasOpenedNotebook',
|
|
733
672
|
media: {
|
|
734
673
|
type: 'markdown', path: 'notebookProfile'
|
|
@@ -736,89 +675,7 @@ const walkthroughs = [
|
|
|
736
675
|
},
|
|
737
676
|
]
|
|
738
677
|
}
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
id: `${NEW_WELCOME_EXPERIENCE}`,
|
|
742
|
-
title: ( localize(12541, "Get started with VS Code")),
|
|
743
|
-
description: ( localize(12542, "Supercharge coding with AI")),
|
|
744
|
-
isFeatured: false,
|
|
745
|
-
icon: setupIcon,
|
|
746
|
-
when: '!isWeb',
|
|
747
|
-
walkthroughPageTitle: ( localize(12543, 'Set up VS Code')),
|
|
748
|
-
content: {
|
|
749
|
-
type: 'steps',
|
|
750
|
-
steps: [
|
|
751
|
-
{
|
|
752
|
-
id: 'copilotSetup.chat',
|
|
753
|
-
title: ( localize(12544, "Agent mode")),
|
|
754
|
-
description: ( localize(
|
|
755
|
-
12545,
|
|
756
|
-
"Analyzes the problem, plans next steps, and makes changes for you."
|
|
757
|
-
)),
|
|
758
|
-
media: {
|
|
759
|
-
type: 'svg', altText: 'VS Code Copilot multi file edits', path: 'multi-file-edits.svg'
|
|
760
|
-
},
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
id: 'copilotSetup.inline',
|
|
764
|
-
title: ( localize(12546, "Next edit suggestions")),
|
|
765
|
-
description: ( localize(12547, "Get code suggestions that predict your next edit.")),
|
|
766
|
-
media: {
|
|
767
|
-
type: 'svg', altText: 'Next edit suggestions', path: 'ai-powered-suggestions.svg'
|
|
768
|
-
},
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
id: 'copilotSetup.customize',
|
|
772
|
-
title: ( localize(12548, "Personalized to how you work")),
|
|
773
|
-
description: ( localize(
|
|
774
|
-
12549,
|
|
775
|
-
"Swap models, add agent mode tools, and create personalized instructions.\n{0}",
|
|
776
|
-
Button(( localize(12550, "Enable AI features")), 'command:workbench.action.chat.triggerSetupWithoutDialog')
|
|
777
|
-
)),
|
|
778
|
-
media: {
|
|
779
|
-
type: 'svg', altText: 'Personalize', path: 'customize-ai.svg'
|
|
780
|
-
},
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
id: 'newCommandPaletteTask',
|
|
784
|
-
title: ( localize(12551, "All commands within reach")),
|
|
785
|
-
description: ( localize(
|
|
786
|
-
12448,
|
|
787
|
-
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
788
|
-
Button(( localize(12449, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
789
|
-
)),
|
|
790
|
-
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
id: 'newPickColorTheme',
|
|
794
|
-
title: ( localize(12435, "Choose your theme")),
|
|
795
|
-
description: ( localize(
|
|
796
|
-
12436,
|
|
797
|
-
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
798
|
-
Button(( localize(12437, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
799
|
-
)),
|
|
800
|
-
completionEvents: [
|
|
801
|
-
'onSettingChanged:workbench.colorTheme',
|
|
802
|
-
'onCommand:workbench.action.selectTheme'
|
|
803
|
-
],
|
|
804
|
-
media: { type: 'markdown', path: 'theme_picker_small', }
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
id: 'newFindLanguageExtensions',
|
|
808
|
-
title: ( localize(12552, "Support for all languages")),
|
|
809
|
-
description: ( localize(
|
|
810
|
-
12553,
|
|
811
|
-
"Install the language extensions you need in your toolkit.\n{0}",
|
|
812
|
-
Button(( localize(12443, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
813
|
-
)),
|
|
814
|
-
when: 'workspacePlatform != \'webworker\'',
|
|
815
|
-
media: {
|
|
816
|
-
type: 'svg', altText: 'Language extensions', path: 'languages.svg'
|
|
817
|
-
},
|
|
818
|
-
},
|
|
819
|
-
]
|
|
820
|
-
}
|
|
821
678
|
}
|
|
822
679
|
];
|
|
823
680
|
|
|
824
|
-
export {
|
|
681
|
+
export { gettingStartedContentRegistry, startEntries, walkthroughs };
|