@codingame/monaco-vscode-walkthrough-service-override 19.1.4 → 20.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 +21 -21
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +46 -46
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +16 -23
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +188 -182
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/ai-powered-suggestions.svg +23 -23
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/customize-ai.svg +3 -8
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/multi-file-edits.svg +2 -2
- 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/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 -0
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +19 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -9,12 +9,18 @@ import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbenc
|
|
|
9
9
|
import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility';
|
|
10
10
|
import product from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/product';
|
|
11
11
|
|
|
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
|
+
};
|
|
12
18
|
const copilotSettingsMessage = ( localize(
|
|
13
|
-
|
|
19
|
+
12403,
|
|
14
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.",
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
defaultChat.provider.default.name,
|
|
22
|
+
defaultChat.publicCodeMatchesUrl,
|
|
23
|
+
defaultChat.manageSettingsUrl
|
|
18
24
|
));
|
|
19
25
|
class GettingStartedContentProviderRegistry {
|
|
20
26
|
constructor() {
|
|
@@ -32,14 +38,14 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
|
|
|
32
38
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
|
|
33
39
|
gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
|
|
34
40
|
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(
|
|
41
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12404, "Icon used for the setup category of welcome page")));
|
|
42
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12405, "Icon used for the beginner category of welcome page")));
|
|
37
43
|
const NEW_WELCOME_EXPERIENCE = 'NewWelcomeExperience';
|
|
38
44
|
const startEntries = [
|
|
39
45
|
{
|
|
40
46
|
id: 'welcome.showNewFileEntries',
|
|
41
|
-
title: ( localize(
|
|
42
|
-
description: ( localize(
|
|
47
|
+
title: ( localize(12406, "New File...")),
|
|
48
|
+
description: ( localize(12407, "Open a new untitled text file, notebook, or custom editor.")),
|
|
43
49
|
icon: Codicon.newFile,
|
|
44
50
|
content: {
|
|
45
51
|
type: 'startEntry',
|
|
@@ -48,8 +54,8 @@ const startEntries = [
|
|
|
48
54
|
},
|
|
49
55
|
{
|
|
50
56
|
id: 'topLevelOpenMac',
|
|
51
|
-
title: ( localize(
|
|
52
|
-
description: ( localize(
|
|
57
|
+
title: ( localize(12408, "Open...")),
|
|
58
|
+
description: ( localize(12409, "Open a file or folder to start working")),
|
|
53
59
|
icon: Codicon.folderOpened,
|
|
54
60
|
when: '!isWeb && isMac',
|
|
55
61
|
content: {
|
|
@@ -59,8 +65,8 @@ const startEntries = [
|
|
|
59
65
|
},
|
|
60
66
|
{
|
|
61
67
|
id: 'topLevelOpenFile',
|
|
62
|
-
title: ( localize(
|
|
63
|
-
description: ( localize(
|
|
68
|
+
title: ( localize(12410, "Open File...")),
|
|
69
|
+
description: ( localize(12411, "Open a file to start working")),
|
|
64
70
|
icon: Codicon.goToFile,
|
|
65
71
|
when: 'isWeb || !isMac',
|
|
66
72
|
content: {
|
|
@@ -70,8 +76,8 @@ const startEntries = [
|
|
|
70
76
|
},
|
|
71
77
|
{
|
|
72
78
|
id: 'topLevelOpenFolder',
|
|
73
|
-
title: ( localize(
|
|
74
|
-
description: ( localize(
|
|
79
|
+
title: ( localize(12412, "Open Folder...")),
|
|
80
|
+
description: ( localize(12413, "Open a folder to start working")),
|
|
75
81
|
icon: Codicon.folderOpened,
|
|
76
82
|
when: '!isWeb && !isMac',
|
|
77
83
|
content: {
|
|
@@ -81,8 +87,8 @@ const startEntries = [
|
|
|
81
87
|
},
|
|
82
88
|
{
|
|
83
89
|
id: 'topLevelOpenFolderWeb',
|
|
84
|
-
title: ( localize(
|
|
85
|
-
description: ( localize(
|
|
90
|
+
title: ( localize(12412, "Open Folder...")),
|
|
91
|
+
description: ( localize(12413, "Open a folder to start working")),
|
|
86
92
|
icon: Codicon.folderOpened,
|
|
87
93
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
88
94
|
content: {
|
|
@@ -92,8 +98,8 @@ const startEntries = [
|
|
|
92
98
|
},
|
|
93
99
|
{
|
|
94
100
|
id: 'topLevelGitClone',
|
|
95
|
-
title: ( localize(
|
|
96
|
-
description: ( localize(
|
|
101
|
+
title: ( localize(12414, "Clone Git Repository...")),
|
|
102
|
+
description: ( localize(12415, "Clone a remote repository to a local folder")),
|
|
97
103
|
when: 'config.git.enabled && !git.missing',
|
|
98
104
|
icon: Codicon.sourceControl,
|
|
99
105
|
content: {
|
|
@@ -103,9 +109,9 @@ const startEntries = [
|
|
|
103
109
|
},
|
|
104
110
|
{
|
|
105
111
|
id: 'topLevelGitOpen',
|
|
106
|
-
title: ( localize(
|
|
112
|
+
title: ( localize(12416, "Open Repository...")),
|
|
107
113
|
description: ( localize(
|
|
108
|
-
|
|
114
|
+
12417,
|
|
109
115
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
110
116
|
)),
|
|
111
117
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -117,8 +123,8 @@ const startEntries = [
|
|
|
117
123
|
},
|
|
118
124
|
{
|
|
119
125
|
id: 'topLevelRemoteOpen',
|
|
120
|
-
title: ( localize(
|
|
121
|
-
description: ( localize(
|
|
126
|
+
title: ( localize(12418, "Connect to...")),
|
|
127
|
+
description: ( localize(12419, "Connect to remote development workspaces.")),
|
|
122
128
|
when: '!isWeb',
|
|
123
129
|
icon: Codicon.remote,
|
|
124
130
|
content: {
|
|
@@ -128,8 +134,8 @@ const startEntries = [
|
|
|
128
134
|
},
|
|
129
135
|
{
|
|
130
136
|
id: 'topLevelOpenTunnel',
|
|
131
|
-
title: ( localize(
|
|
132
|
-
description: ( localize(
|
|
137
|
+
title: ( localize(12420, "Open Tunnel...")),
|
|
138
|
+
description: ( localize(12421, "Connect to a remote machine through a Tunnel")),
|
|
133
139
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
134
140
|
icon: Codicon.remote,
|
|
135
141
|
content: {
|
|
@@ -139,9 +145,9 @@ const startEntries = [
|
|
|
139
145
|
},
|
|
140
146
|
{
|
|
141
147
|
id: 'topLevelNewWorkspaceChat',
|
|
142
|
-
title: ( localize(
|
|
143
|
-
description: ( localize(
|
|
144
|
-
icon: Codicon.
|
|
148
|
+
title: ( localize(12422, "Generate New Workspace...")),
|
|
149
|
+
description: ( localize(12423, "Chat to create a new workspace")),
|
|
150
|
+
icon: Codicon.chatSparkle,
|
|
145
151
|
when: '!isWeb && !chatSetupHidden',
|
|
146
152
|
content: {
|
|
147
153
|
type: 'startEntry',
|
|
@@ -150,15 +156,15 @@ const startEntries = [
|
|
|
150
156
|
},
|
|
151
157
|
];
|
|
152
158
|
const Button = (title, href) => `[${title}](${href})`;
|
|
153
|
-
const CopilotStepTitle = ( localize(
|
|
159
|
+
const CopilotStepTitle = ( localize(12424, "Use AI features with Copilot for free"));
|
|
154
160
|
const CopilotDescription = ( localize(
|
|
155
|
-
|
|
161
|
+
12425,
|
|
156
162
|
"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
|
-
|
|
163
|
+
defaultChat.documentationUrl ?? ''
|
|
158
164
|
));
|
|
159
|
-
const CopilotSignedOutButton = Button(( localize(
|
|
160
|
-
const CopilotSignedInButton = Button(( localize(
|
|
161
|
-
const CopilotCompleteButton = Button(( localize(
|
|
165
|
+
const CopilotSignedOutButton = Button(( localize(12426, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
166
|
+
const CopilotSignedInButton = Button(( localize(12427, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
|
|
167
|
+
const CopilotCompleteButton = Button(( localize(12428, "Chat with Copilot")), 'command:workbench.action.chat.open');
|
|
162
168
|
function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
163
169
|
const description = includeTerms ?
|
|
164
170
|
`${CopilotDescription}\n\n${button}` :
|
|
@@ -176,12 +182,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
|
|
|
176
182
|
const walkthroughs = [
|
|
177
183
|
{
|
|
178
184
|
id: 'Setup',
|
|
179
|
-
title: ( localize(
|
|
180
|
-
description: ( localize(
|
|
185
|
+
title: ( localize(12429, "Get started with VS Code")),
|
|
186
|
+
description: ( localize(12430, "Customize your editor, learn the basics, and start coding")),
|
|
181
187
|
isFeatured: true,
|
|
182
188
|
icon: setupIcon,
|
|
183
189
|
when: '!isWeb',
|
|
184
|
-
walkthroughPageTitle: ( localize(
|
|
190
|
+
walkthroughPageTitle: ( localize(12431, 'Setup VS Code')),
|
|
185
191
|
next: 'Beginner',
|
|
186
192
|
content: {
|
|
187
193
|
type: 'steps',
|
|
@@ -191,11 +197,11 @@ const walkthroughs = [
|
|
|
191
197
|
createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
|
|
192
198
|
{
|
|
193
199
|
id: 'pickColorTheme',
|
|
194
|
-
title: ( localize(
|
|
200
|
+
title: ( localize(12432, "Choose your theme")),
|
|
195
201
|
description: ( localize(
|
|
196
|
-
|
|
202
|
+
12433,
|
|
197
203
|
"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(
|
|
204
|
+
Button(( localize(12434, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
199
205
|
)),
|
|
200
206
|
completionEvents: [
|
|
201
207
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -205,11 +211,11 @@ const walkthroughs = [
|
|
|
205
211
|
},
|
|
206
212
|
{
|
|
207
213
|
id: 'extensionsWeb',
|
|
208
|
-
title: ( localize(
|
|
214
|
+
title: ( localize(12435, "Code with extensions")),
|
|
209
215
|
description: ( localize(
|
|
210
|
-
|
|
216
|
+
12436,
|
|
211
217
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
212
|
-
Button(( localize(
|
|
218
|
+
Button(( localize(12437, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
213
219
|
)),
|
|
214
220
|
when: 'workspacePlatform == \'webworker\'',
|
|
215
221
|
media: {
|
|
@@ -218,11 +224,11 @@ const walkthroughs = [
|
|
|
218
224
|
},
|
|
219
225
|
{
|
|
220
226
|
id: 'findLanguageExtensions',
|
|
221
|
-
title: ( localize(
|
|
227
|
+
title: ( localize(12438, "Rich support for all your languages")),
|
|
222
228
|
description: ( localize(
|
|
223
|
-
|
|
229
|
+
12439,
|
|
224
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}",
|
|
225
|
-
Button(( localize(
|
|
231
|
+
Button(( localize(12440, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
226
232
|
)),
|
|
227
233
|
when: 'workspacePlatform != \'webworker\'',
|
|
228
234
|
media: {
|
|
@@ -231,11 +237,11 @@ const walkthroughs = [
|
|
|
231
237
|
},
|
|
232
238
|
{
|
|
233
239
|
id: 'settingsAndSync',
|
|
234
|
-
title: ( localize(
|
|
240
|
+
title: ( localize(12441, "Tune your settings")),
|
|
235
241
|
description: ( localize(
|
|
236
|
-
|
|
242
|
+
12442,
|
|
237
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}",
|
|
238
|
-
Button(( localize(
|
|
244
|
+
Button(( localize(12443, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
239
245
|
)),
|
|
240
246
|
when: 'syncStatus != uninitialized',
|
|
241
247
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -245,21 +251,21 @@ const walkthroughs = [
|
|
|
245
251
|
},
|
|
246
252
|
{
|
|
247
253
|
id: 'commandPaletteTask',
|
|
248
|
-
title: ( localize(
|
|
254
|
+
title: ( localize(12444, "Unlock productivity with the Command Palette ")),
|
|
249
255
|
description: ( localize(
|
|
250
|
-
|
|
256
|
+
12445,
|
|
251
257
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
252
|
-
Button(( localize(
|
|
258
|
+
Button(( localize(12446, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
253
259
|
)),
|
|
254
260
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
255
261
|
},
|
|
256
262
|
{
|
|
257
263
|
id: 'quickOpen',
|
|
258
|
-
title: ( localize(
|
|
264
|
+
title: ( localize(12447, "Quickly navigate between your files")),
|
|
259
265
|
description: ( localize(
|
|
260
|
-
|
|
266
|
+
12448,
|
|
261
267
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
262
|
-
Button(( localize(
|
|
268
|
+
Button(( localize(12449, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
263
269
|
)),
|
|
264
270
|
when: 'workspaceFolderCount != 0',
|
|
265
271
|
media: {
|
|
@@ -268,11 +274,11 @@ const walkthroughs = [
|
|
|
268
274
|
},
|
|
269
275
|
{
|
|
270
276
|
id: 'videoTutorial',
|
|
271
|
-
title: ( localize(
|
|
277
|
+
title: ( localize(12450, "Watch video tutorials")),
|
|
272
278
|
description: ( localize(
|
|
273
|
-
|
|
279
|
+
12451,
|
|
274
280
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
275
|
-
Button(( localize(
|
|
281
|
+
Button(( localize(12452, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
276
282
|
)),
|
|
277
283
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
278
284
|
}
|
|
@@ -281,23 +287,23 @@ const walkthroughs = [
|
|
|
281
287
|
},
|
|
282
288
|
{
|
|
283
289
|
id: 'SetupWeb',
|
|
284
|
-
title: ( localize(
|
|
285
|
-
description: ( localize(
|
|
290
|
+
title: ( localize(12453, "Get Started with VS Code for the Web")),
|
|
291
|
+
description: ( localize(12454, "Customize your editor, learn the basics, and start coding")),
|
|
286
292
|
isFeatured: true,
|
|
287
293
|
icon: setupIcon,
|
|
288
294
|
when: 'isWeb',
|
|
289
295
|
next: 'Beginner',
|
|
290
|
-
walkthroughPageTitle: ( localize(
|
|
296
|
+
walkthroughPageTitle: ( localize(12455, 'Setup VS Code Web')),
|
|
291
297
|
content: {
|
|
292
298
|
type: 'steps',
|
|
293
299
|
steps: [
|
|
294
300
|
{
|
|
295
301
|
id: 'pickColorThemeWeb',
|
|
296
|
-
title: ( localize(
|
|
302
|
+
title: ( localize(12432, "Choose your theme")),
|
|
297
303
|
description: ( localize(
|
|
298
|
-
|
|
304
|
+
12433,
|
|
299
305
|
"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(
|
|
306
|
+
Button(( localize(12434, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
301
307
|
)),
|
|
302
308
|
completionEvents: [
|
|
303
309
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -307,11 +313,11 @@ const walkthroughs = [
|
|
|
307
313
|
},
|
|
308
314
|
{
|
|
309
315
|
id: 'menuBarWeb',
|
|
310
|
-
title: ( localize(
|
|
316
|
+
title: ( localize(12456, "Just the right amount of UI")),
|
|
311
317
|
description: ( localize(
|
|
312
|
-
|
|
318
|
+
12457,
|
|
313
319
|
"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(
|
|
320
|
+
Button(( localize(12458, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
315
321
|
)),
|
|
316
322
|
when: 'isWeb',
|
|
317
323
|
media: {
|
|
@@ -320,11 +326,11 @@ const walkthroughs = [
|
|
|
320
326
|
},
|
|
321
327
|
{
|
|
322
328
|
id: 'extensionsWebWeb',
|
|
323
|
-
title: ( localize(
|
|
329
|
+
title: ( localize(12435, "Code with extensions")),
|
|
324
330
|
description: ( localize(
|
|
325
|
-
|
|
331
|
+
12436,
|
|
326
332
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
327
|
-
Button(( localize(
|
|
333
|
+
Button(( localize(12437, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
328
334
|
)),
|
|
329
335
|
when: 'workspacePlatform == \'webworker\'',
|
|
330
336
|
media: {
|
|
@@ -333,11 +339,11 @@ const walkthroughs = [
|
|
|
333
339
|
},
|
|
334
340
|
{
|
|
335
341
|
id: 'findLanguageExtensionsWeb',
|
|
336
|
-
title: ( localize(
|
|
342
|
+
title: ( localize(12438, "Rich support for all your languages")),
|
|
337
343
|
description: ( localize(
|
|
338
|
-
|
|
344
|
+
12439,
|
|
339
345
|
"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(
|
|
346
|
+
Button(( localize(12440, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
341
347
|
)),
|
|
342
348
|
when: 'workspacePlatform != \'webworker\'',
|
|
343
349
|
media: {
|
|
@@ -346,11 +352,11 @@ const walkthroughs = [
|
|
|
346
352
|
},
|
|
347
353
|
{
|
|
348
354
|
id: 'settingsSyncWeb',
|
|
349
|
-
title: ( localize(
|
|
355
|
+
title: ( localize(12459, "Sync settings across devices")),
|
|
350
356
|
description: ( localize(
|
|
351
|
-
|
|
357
|
+
12460,
|
|
352
358
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
353
|
-
Button(( localize(
|
|
359
|
+
Button(( localize(12461, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
354
360
|
)),
|
|
355
361
|
when: 'syncStatus != uninitialized',
|
|
356
362
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -360,22 +366,22 @@ const walkthroughs = [
|
|
|
360
366
|
},
|
|
361
367
|
{
|
|
362
368
|
id: 'commandPaletteTaskWeb',
|
|
363
|
-
title: ( localize(
|
|
369
|
+
title: ( localize(12444, "Unlock productivity with the Command Palette ")),
|
|
364
370
|
description: ( localize(
|
|
365
|
-
|
|
371
|
+
12445,
|
|
366
372
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
367
|
-
Button(( localize(
|
|
373
|
+
Button(( localize(12446, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
368
374
|
)),
|
|
369
375
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
370
376
|
},
|
|
371
377
|
{
|
|
372
378
|
id: 'pickAFolderTask-WebWeb',
|
|
373
|
-
title: ( localize(
|
|
379
|
+
title: ( localize(12462, "Open up your code")),
|
|
374
380
|
description: ( localize(
|
|
375
|
-
|
|
381
|
+
12463,
|
|
376
382
|
"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(
|
|
383
|
+
Button(( localize(12464, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
384
|
+
Button(( localize(12465, "Open Repository")), 'command:remoteHub.openRepository')
|
|
379
385
|
)),
|
|
380
386
|
when: 'workspaceFolderCount == 0',
|
|
381
387
|
media: {
|
|
@@ -384,11 +390,11 @@ const walkthroughs = [
|
|
|
384
390
|
},
|
|
385
391
|
{
|
|
386
392
|
id: 'quickOpenWeb',
|
|
387
|
-
title: ( localize(
|
|
393
|
+
title: ( localize(12447, "Quickly navigate between your files")),
|
|
388
394
|
description: ( localize(
|
|
389
|
-
|
|
395
|
+
12448,
|
|
390
396
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
391
|
-
Button(( localize(
|
|
397
|
+
Button(( localize(12449, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
392
398
|
)),
|
|
393
399
|
when: 'workspaceFolderCount != 0',
|
|
394
400
|
media: {
|
|
@@ -400,26 +406,26 @@ const walkthroughs = [
|
|
|
400
406
|
},
|
|
401
407
|
{
|
|
402
408
|
id: 'SetupAccessibility',
|
|
403
|
-
title: ( localize(
|
|
409
|
+
title: ( localize(12466, "Get Started with Accessibility Features")),
|
|
404
410
|
description: ( localize(
|
|
405
|
-
|
|
411
|
+
12467,
|
|
406
412
|
"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
413
|
)),
|
|
408
414
|
isFeatured: true,
|
|
409
415
|
icon: setupIcon,
|
|
410
416
|
when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
|
|
411
417
|
next: 'Setup',
|
|
412
|
-
walkthroughPageTitle: ( localize(
|
|
418
|
+
walkthroughPageTitle: ( localize(12468, 'Setup VS Code Accessibility')),
|
|
413
419
|
content: {
|
|
414
420
|
type: 'steps',
|
|
415
421
|
steps: [
|
|
416
422
|
{
|
|
417
423
|
id: 'accessibilityHelp',
|
|
418
|
-
title: ( localize(
|
|
424
|
+
title: ( localize(12469, "Use the accessibility help dialog to learn about features")),
|
|
419
425
|
description: ( localize(
|
|
420
|
-
|
|
426
|
+
12470,
|
|
421
427
|
"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(
|
|
428
|
+
Button(( localize(12471, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
|
|
423
429
|
)),
|
|
424
430
|
media: {
|
|
425
431
|
type: 'markdown', path: 'empty'
|
|
@@ -428,13 +434,13 @@ const walkthroughs = [
|
|
|
428
434
|
{
|
|
429
435
|
id: 'accessibleView',
|
|
430
436
|
title: ( localize(
|
|
431
|
-
|
|
437
|
+
12472,
|
|
432
438
|
"Screen reader users can inspect content line by line, character by character in the accessible view."
|
|
433
439
|
)),
|
|
434
440
|
description: ( localize(
|
|
435
|
-
|
|
441
|
+
12473,
|
|
436
442
|
"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(
|
|
443
|
+
Button(( localize(12474, "Open Accessible View")), 'command:editor.action.accessibleView')
|
|
438
444
|
)),
|
|
439
445
|
media: {
|
|
440
446
|
type: 'markdown', path: 'empty'
|
|
@@ -442,11 +448,11 @@ const walkthroughs = [
|
|
|
442
448
|
},
|
|
443
449
|
{
|
|
444
450
|
id: 'verbositySettings',
|
|
445
|
-
title: ( localize(
|
|
451
|
+
title: ( localize(12475, "Control the verbosity of aria labels")),
|
|
446
452
|
description: ( localize(
|
|
447
|
-
|
|
453
|
+
12476,
|
|
448
454
|
"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(
|
|
455
|
+
Button(( localize(12477, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
450
456
|
)),
|
|
451
457
|
media: {
|
|
452
458
|
type: 'markdown', path: 'empty'
|
|
@@ -454,21 +460,21 @@ const walkthroughs = [
|
|
|
454
460
|
},
|
|
455
461
|
{
|
|
456
462
|
id: 'commandPaletteTaskAccessibility',
|
|
457
|
-
title: ( localize(
|
|
463
|
+
title: ( localize(12478, "Unlock productivity with the Command Palette ")),
|
|
458
464
|
description: ( localize(
|
|
459
|
-
|
|
465
|
+
12479,
|
|
460
466
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
461
|
-
Button(( localize(
|
|
467
|
+
Button(( localize(12446, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
462
468
|
)),
|
|
463
469
|
media: { type: 'markdown', path: 'empty' },
|
|
464
470
|
},
|
|
465
471
|
{
|
|
466
472
|
id: 'keybindingsAccessibility',
|
|
467
|
-
title: ( localize(
|
|
473
|
+
title: ( localize(12480, "Customize your keyboard shortcuts")),
|
|
468
474
|
description: ( localize(
|
|
469
|
-
|
|
475
|
+
12481,
|
|
470
476
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
471
|
-
Button(( localize(
|
|
477
|
+
Button(( localize(12482, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
472
478
|
)),
|
|
473
479
|
media: {
|
|
474
480
|
type: 'markdown', path: 'empty',
|
|
@@ -477,14 +483,14 @@ const walkthroughs = [
|
|
|
477
483
|
{
|
|
478
484
|
id: 'accessibilitySignals',
|
|
479
485
|
title: ( localize(
|
|
480
|
-
|
|
486
|
+
12483,
|
|
481
487
|
"Fine tune which accessibility signals you want to receive via audio or a braille device"
|
|
482
488
|
)),
|
|
483
489
|
description: ( localize(
|
|
484
|
-
|
|
490
|
+
12484,
|
|
485
491
|
"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(
|
|
492
|
+
Button(( localize(12485, "List Signal Sounds")), 'command:signals.sounds.help'),
|
|
493
|
+
Button(( localize(12486, "List Signal Announcements")), 'command:accessibility.announcement.help')
|
|
488
494
|
)),
|
|
489
495
|
media: {
|
|
490
496
|
type: 'markdown', path: 'empty'
|
|
@@ -493,13 +499,13 @@ const walkthroughs = [
|
|
|
493
499
|
{
|
|
494
500
|
id: 'hover',
|
|
495
501
|
title: ( localize(
|
|
496
|
-
|
|
502
|
+
12487,
|
|
497
503
|
"Access the hover in the editor to get more information on a variable or symbol"
|
|
498
504
|
)),
|
|
499
505
|
description: ( localize(
|
|
500
|
-
|
|
501
|
-
"While focus is in the editor on a variable or symbol, a hover can be
|
|
502
|
-
Button(( localize(
|
|
506
|
+
12488,
|
|
507
|
+
"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(12489, "Show or Focus Hover")), 'command:editor.action.showHover')
|
|
503
509
|
)),
|
|
504
510
|
media: {
|
|
505
511
|
type: 'markdown', path: 'empty'
|
|
@@ -507,11 +513,11 @@ const walkthroughs = [
|
|
|
507
513
|
},
|
|
508
514
|
{
|
|
509
515
|
id: 'goToSymbol',
|
|
510
|
-
title: ( localize(
|
|
516
|
+
title: ( localize(12490, "Navigate to symbols in a file")),
|
|
511
517
|
description: ( localize(
|
|
512
|
-
|
|
518
|
+
12491,
|
|
513
519
|
"The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
|
|
514
|
-
Button(( localize(
|
|
520
|
+
Button(( localize(12492, "Go to Symbol")), 'command:editor.action.goToSymbol')
|
|
515
521
|
)),
|
|
516
522
|
media: {
|
|
517
523
|
type: 'markdown', path: 'empty'
|
|
@@ -520,14 +526,14 @@ const walkthroughs = [
|
|
|
520
526
|
{
|
|
521
527
|
id: 'codeFolding',
|
|
522
528
|
title: ( localize(
|
|
523
|
-
|
|
529
|
+
12493,
|
|
524
530
|
"Use code folding to collapse blocks of code and focus on the code you're interested in."
|
|
525
531
|
)),
|
|
526
532
|
description: ( localize(
|
|
527
|
-
|
|
533
|
+
12494,
|
|
528
534
|
"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(
|
|
535
|
+
Button(( localize(12495, "Toggle Fold")), 'command:editor.toggleFold'),
|
|
536
|
+
Button(( localize(12496, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
|
|
531
537
|
)),
|
|
532
538
|
media: {
|
|
533
539
|
type: 'markdown', path: 'empty'
|
|
@@ -535,12 +541,12 @@ const walkthroughs = [
|
|
|
535
541
|
},
|
|
536
542
|
{
|
|
537
543
|
id: 'intellisense',
|
|
538
|
-
title: ( localize(
|
|
544
|
+
title: ( localize(12497, "Use Intellisense to improve coding efficiency")),
|
|
539
545
|
description: ( localize(
|
|
540
|
-
|
|
546
|
+
12498,
|
|
541
547
|
"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(
|
|
548
|
+
Button(( localize(12499, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
|
|
549
|
+
Button(( localize(12500, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
|
|
544
550
|
)),
|
|
545
551
|
media: {
|
|
546
552
|
type: 'markdown', path: 'empty'
|
|
@@ -548,11 +554,11 @@ const walkthroughs = [
|
|
|
548
554
|
},
|
|
549
555
|
{
|
|
550
556
|
id: 'accessibilitySettings',
|
|
551
|
-
title: ( localize(
|
|
557
|
+
title: ( localize(12501, "Configure accessibility settings")),
|
|
552
558
|
description: ( localize(
|
|
553
|
-
|
|
559
|
+
12502,
|
|
554
560
|
"Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
|
|
555
|
-
Button(( localize(
|
|
561
|
+
Button(( localize(12503, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
|
|
556
562
|
)),
|
|
557
563
|
media: { type: 'markdown', path: 'empty' }
|
|
558
564
|
}
|
|
@@ -562,20 +568,20 @@ const walkthroughs = [
|
|
|
562
568
|
{
|
|
563
569
|
id: 'Beginner',
|
|
564
570
|
isFeatured: false,
|
|
565
|
-
title: ( localize(
|
|
571
|
+
title: ( localize(12504, "Learn the Fundamentals")),
|
|
566
572
|
icon: beginnerIcon,
|
|
567
|
-
description: ( localize(
|
|
568
|
-
walkthroughPageTitle: ( localize(
|
|
573
|
+
description: ( localize(12505, "Get an overview of the most essential features")),
|
|
574
|
+
walkthroughPageTitle: ( localize(12506, 'Essential Features')),
|
|
569
575
|
content: {
|
|
570
576
|
type: 'steps',
|
|
571
577
|
steps: [
|
|
572
578
|
{
|
|
573
579
|
id: 'extensions',
|
|
574
|
-
title: ( localize(
|
|
580
|
+
title: ( localize(12435, "Code with extensions")),
|
|
575
581
|
description: ( localize(
|
|
576
|
-
|
|
582
|
+
12507,
|
|
577
583
|
"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(
|
|
584
|
+
Button(( localize(12508, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
579
585
|
)),
|
|
580
586
|
when: 'workspacePlatform != \'webworker\'',
|
|
581
587
|
media: {
|
|
@@ -584,11 +590,11 @@ const walkthroughs = [
|
|
|
584
590
|
},
|
|
585
591
|
{
|
|
586
592
|
id: 'terminal',
|
|
587
|
-
title: ( localize(
|
|
593
|
+
title: ( localize(12509, "Built-in terminal")),
|
|
588
594
|
description: ( localize(
|
|
589
|
-
|
|
595
|
+
12510,
|
|
590
596
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
591
|
-
Button(( localize(
|
|
597
|
+
Button(( localize(12511, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
592
598
|
)),
|
|
593
599
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
594
600
|
media: {
|
|
@@ -597,11 +603,11 @@ const walkthroughs = [
|
|
|
597
603
|
},
|
|
598
604
|
{
|
|
599
605
|
id: 'debugging',
|
|
600
|
-
title: ( localize(
|
|
606
|
+
title: ( localize(12512, "Watch your code in action")),
|
|
601
607
|
description: ( localize(
|
|
602
|
-
|
|
608
|
+
12513,
|
|
603
609
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
604
|
-
Button(( localize(
|
|
610
|
+
Button(( localize(12514, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
605
611
|
)),
|
|
606
612
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
607
613
|
media: {
|
|
@@ -610,11 +616,11 @@ const walkthroughs = [
|
|
|
610
616
|
},
|
|
611
617
|
{
|
|
612
618
|
id: 'scmClone',
|
|
613
|
-
title: ( localize(
|
|
619
|
+
title: ( localize(12515, "Track your code with Git")),
|
|
614
620
|
description: ( localize(
|
|
615
|
-
|
|
621
|
+
12516,
|
|
616
622
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
617
|
-
Button(( localize(
|
|
623
|
+
Button(( localize(12517, "Clone Repository")), 'command:git.clone')
|
|
618
624
|
)),
|
|
619
625
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
620
626
|
media: {
|
|
@@ -623,11 +629,11 @@ const walkthroughs = [
|
|
|
623
629
|
},
|
|
624
630
|
{
|
|
625
631
|
id: 'scmSetup',
|
|
626
|
-
title: ( localize(
|
|
632
|
+
title: ( localize(12515, "Track your code with Git")),
|
|
627
633
|
description: ( localize(
|
|
628
|
-
|
|
634
|
+
12518,
|
|
629
635
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
630
|
-
Button(( localize(
|
|
636
|
+
Button(( localize(12519, "Initialize Git Repository")), 'command:git.init')
|
|
631
637
|
)),
|
|
632
638
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
633
639
|
media: {
|
|
@@ -636,11 +642,11 @@ const walkthroughs = [
|
|
|
636
642
|
},
|
|
637
643
|
{
|
|
638
644
|
id: 'scm',
|
|
639
|
-
title: ( localize(
|
|
645
|
+
title: ( localize(12515, "Track your code with Git")),
|
|
640
646
|
description: ( localize(
|
|
641
|
-
|
|
647
|
+
12520,
|
|
642
648
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
643
|
-
Button(( localize(
|
|
649
|
+
Button(( localize(12521, "Open Source Control")), 'command:workbench.view.scm')
|
|
644
650
|
)),
|
|
645
651
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
646
652
|
media: {
|
|
@@ -649,11 +655,11 @@ const walkthroughs = [
|
|
|
649
655
|
},
|
|
650
656
|
{
|
|
651
657
|
id: 'installGit',
|
|
652
|
-
title: ( localize(
|
|
658
|
+
title: ( localize(12522, "Install Git")),
|
|
653
659
|
description: ( localize(
|
|
654
|
-
|
|
660
|
+
12523,
|
|
655
661
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
656
|
-
Button(( localize(
|
|
662
|
+
Button(( localize(12524, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
657
663
|
'[',
|
|
658
664
|
'](command:workbench.action.reloadWindow)'
|
|
659
665
|
)),
|
|
@@ -667,12 +673,12 @@ const walkthroughs = [
|
|
|
667
673
|
},
|
|
668
674
|
{
|
|
669
675
|
id: 'tasks',
|
|
670
|
-
title: ( localize(
|
|
676
|
+
title: ( localize(12525, "Automate your project tasks")),
|
|
671
677
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
672
678
|
description: ( localize(
|
|
673
|
-
|
|
679
|
+
12526,
|
|
674
680
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
675
|
-
Button(( localize(
|
|
681
|
+
Button(( localize(12527, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
676
682
|
)),
|
|
677
683
|
media: {
|
|
678
684
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -680,11 +686,11 @@ const walkthroughs = [
|
|
|
680
686
|
},
|
|
681
687
|
{
|
|
682
688
|
id: 'shortcuts',
|
|
683
|
-
title: ( localize(
|
|
689
|
+
title: ( localize(12528, "Customize your shortcuts")),
|
|
684
690
|
description: ( localize(
|
|
685
|
-
|
|
691
|
+
12529,
|
|
686
692
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
687
|
-
Button(( localize(
|
|
693
|
+
Button(( localize(12482, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
688
694
|
)),
|
|
689
695
|
media: {
|
|
690
696
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -692,12 +698,12 @@ const walkthroughs = [
|
|
|
692
698
|
},
|
|
693
699
|
{
|
|
694
700
|
id: 'workspaceTrust',
|
|
695
|
-
title: ( localize(
|
|
701
|
+
title: ( localize(12530, "Safely browse and edit code")),
|
|
696
702
|
description: ( localize(
|
|
697
|
-
|
|
703
|
+
12531,
|
|
698
704
|
"{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(
|
|
705
|
+
Button(( localize(12532, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
|
|
706
|
+
Button(( localize(12533, "enable trust")), 'command:toSide:workbench.trust.manage')
|
|
701
707
|
)),
|
|
702
708
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
703
709
|
media: {
|
|
@@ -709,20 +715,20 @@ const walkthroughs = [
|
|
|
709
715
|
},
|
|
710
716
|
{
|
|
711
717
|
id: 'notebooks',
|
|
712
|
-
title: ( localize(
|
|
718
|
+
title: ( localize(12534, "Customize Notebooks")),
|
|
713
719
|
description: '',
|
|
714
720
|
icon: setupIcon,
|
|
715
721
|
isFeatured: false,
|
|
716
722
|
when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
|
|
717
|
-
walkthroughPageTitle: ( localize(
|
|
723
|
+
walkthroughPageTitle: ( localize(12535, 'Notebooks')),
|
|
718
724
|
content: {
|
|
719
725
|
type: 'steps',
|
|
720
726
|
steps: [
|
|
721
727
|
{
|
|
722
728
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
723
729
|
id: 'notebookProfile',
|
|
724
|
-
title: ( localize(
|
|
725
|
-
description: ( localize(
|
|
730
|
+
title: ( localize(12536, "Select the layout for your notebooks")),
|
|
731
|
+
description: ( localize(12537, "Get notebooks to feel just the way you prefer")),
|
|
726
732
|
when: 'userHasOpenedNotebook',
|
|
727
733
|
media: {
|
|
728
734
|
type: 'markdown', path: 'notebookProfile'
|
|
@@ -733,20 +739,20 @@ const walkthroughs = [
|
|
|
733
739
|
},
|
|
734
740
|
{
|
|
735
741
|
id: `${NEW_WELCOME_EXPERIENCE}`,
|
|
736
|
-
title: ( localize(
|
|
737
|
-
description: ( localize(
|
|
742
|
+
title: ( localize(12538, "Get started with VS Code")),
|
|
743
|
+
description: ( localize(12539, "Supercharge coding with AI")),
|
|
738
744
|
isFeatured: false,
|
|
739
745
|
icon: setupIcon,
|
|
740
746
|
when: '!isWeb',
|
|
741
|
-
walkthroughPageTitle: ( localize(
|
|
747
|
+
walkthroughPageTitle: ( localize(12540, 'Set up VS Code')),
|
|
742
748
|
content: {
|
|
743
749
|
type: 'steps',
|
|
744
750
|
steps: [
|
|
745
751
|
{
|
|
746
752
|
id: 'copilotSetup.chat',
|
|
747
|
-
title: ( localize(
|
|
753
|
+
title: ( localize(12541, "Agent mode")),
|
|
748
754
|
description: ( localize(
|
|
749
|
-
|
|
755
|
+
12542,
|
|
750
756
|
"Analyzes the problem, plans next steps, and makes changes for you."
|
|
751
757
|
)),
|
|
752
758
|
media: {
|
|
@@ -755,19 +761,19 @@ const walkthroughs = [
|
|
|
755
761
|
},
|
|
756
762
|
{
|
|
757
763
|
id: 'copilotSetup.inline',
|
|
758
|
-
title: ( localize(
|
|
759
|
-
description: ( localize(
|
|
764
|
+
title: ( localize(12543, "Next edit suggestions")),
|
|
765
|
+
description: ( localize(12544, "Get code suggestions that predict your next edit.")),
|
|
760
766
|
media: {
|
|
761
767
|
type: 'svg', altText: 'Next edit suggestions', path: 'ai-powered-suggestions.svg'
|
|
762
768
|
},
|
|
763
769
|
},
|
|
764
770
|
{
|
|
765
771
|
id: 'copilotSetup.customize',
|
|
766
|
-
title: ( localize(
|
|
772
|
+
title: ( localize(12545, "Personalized to how you work")),
|
|
767
773
|
description: ( localize(
|
|
768
|
-
|
|
774
|
+
12546,
|
|
769
775
|
"Swap models, add agent mode tools, and create personalized instructions.\n{0}",
|
|
770
|
-
Button(( localize(
|
|
776
|
+
Button(( localize(12547, "Enable AI features")), 'command:workbench.action.chat.triggerSetupWithoutDialog')
|
|
771
777
|
)),
|
|
772
778
|
media: {
|
|
773
779
|
type: 'svg', altText: 'Personalize', path: 'customize-ai.svg'
|
|
@@ -775,21 +781,21 @@ const walkthroughs = [
|
|
|
775
781
|
},
|
|
776
782
|
{
|
|
777
783
|
id: 'newCommandPaletteTask',
|
|
778
|
-
title: ( localize(
|
|
784
|
+
title: ( localize(12548, "All commands within reach")),
|
|
779
785
|
description: ( localize(
|
|
780
|
-
|
|
786
|
+
12445,
|
|
781
787
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
782
|
-
Button(( localize(
|
|
788
|
+
Button(( localize(12446, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
783
789
|
)),
|
|
784
790
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
785
791
|
},
|
|
786
792
|
{
|
|
787
793
|
id: 'newPickColorTheme',
|
|
788
|
-
title: ( localize(
|
|
794
|
+
title: ( localize(12432, "Choose your theme")),
|
|
789
795
|
description: ( localize(
|
|
790
|
-
|
|
796
|
+
12433,
|
|
791
797
|
"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(
|
|
798
|
+
Button(( localize(12434, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
793
799
|
)),
|
|
794
800
|
completionEvents: [
|
|
795
801
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -799,11 +805,11 @@ const walkthroughs = [
|
|
|
799
805
|
},
|
|
800
806
|
{
|
|
801
807
|
id: 'newFindLanguageExtensions',
|
|
802
|
-
title: ( localize(
|
|
808
|
+
title: ( localize(12549, "Support for all languages")),
|
|
803
809
|
description: ( localize(
|
|
804
|
-
|
|
810
|
+
12550,
|
|
805
811
|
"Install the language extensions you need in your toolkit.\n{0}",
|
|
806
|
-
Button(( localize(
|
|
812
|
+
Button(( localize(12440, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
807
813
|
)),
|
|
808
814
|
when: 'workspacePlatform != \'webworker\'',
|
|
809
815
|
media: {
|