@codingame/monaco-vscode-walkthrough-service-override 7.1.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +27 -34
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +30 -39
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +8 -9
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +57 -93
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +3 -12
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +2 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +5 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +6 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +4 -6
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +147 -177
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +4 -5
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +6 -7
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +4 -9
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +3 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +3 -4
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +3 -5
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import 'vscode/vscode/vs/base/common/strings';
|
|
2
|
-
import {
|
|
2
|
+
import { localize } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import 'vscode/vscode/vs/workbench/services/themes/common/workbenchThemeService';
|
|
4
4
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
5
5
|
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
6
6
|
import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
|
|
7
7
|
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localizeWithPath(_moduleId, 1, "Icon used for the beginner category of welcome page")));
|
|
8
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7381, "Icon used for the setup category of welcome page")));
|
|
9
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7382, "Icon used for the beginner category of welcome page")));
|
|
11
10
|
const startEntries = [
|
|
12
11
|
{
|
|
13
12
|
id: 'welcome.showNewFileEntries',
|
|
14
|
-
title: (
|
|
15
|
-
description: (
|
|
13
|
+
title: ( localize(7383, "New File...")),
|
|
14
|
+
description: ( localize(7384, "Open a new untitled text file, notebook, or custom editor.")),
|
|
16
15
|
icon: Codicon.newFile,
|
|
17
16
|
content: {
|
|
18
17
|
type: 'startEntry',
|
|
@@ -21,8 +20,8 @@ const startEntries = [
|
|
|
21
20
|
},
|
|
22
21
|
{
|
|
23
22
|
id: 'topLevelOpenMac',
|
|
24
|
-
title: (
|
|
25
|
-
description: (
|
|
23
|
+
title: ( localize(7385, "Open...")),
|
|
24
|
+
description: ( localize(7386, "Open a file or folder to start working")),
|
|
26
25
|
icon: Codicon.folderOpened,
|
|
27
26
|
when: '!isWeb && isMac',
|
|
28
27
|
content: {
|
|
@@ -32,8 +31,8 @@ const startEntries = [
|
|
|
32
31
|
},
|
|
33
32
|
{
|
|
34
33
|
id: 'topLevelOpenFile',
|
|
35
|
-
title: (
|
|
36
|
-
description: (
|
|
34
|
+
title: ( localize(7387, "Open File...")),
|
|
35
|
+
description: ( localize(7388, "Open a file to start working")),
|
|
37
36
|
icon: Codicon.goToFile,
|
|
38
37
|
when: 'isWeb || !isMac',
|
|
39
38
|
content: {
|
|
@@ -43,8 +42,8 @@ const startEntries = [
|
|
|
43
42
|
},
|
|
44
43
|
{
|
|
45
44
|
id: 'topLevelOpenFolder',
|
|
46
|
-
title: (
|
|
47
|
-
description: (
|
|
45
|
+
title: ( localize(7389, "Open Folder...")),
|
|
46
|
+
description: ( localize(7390, "Open a folder to start working")),
|
|
48
47
|
icon: Codicon.folderOpened,
|
|
49
48
|
when: '!isWeb && !isMac',
|
|
50
49
|
content: {
|
|
@@ -54,8 +53,8 @@ const startEntries = [
|
|
|
54
53
|
},
|
|
55
54
|
{
|
|
56
55
|
id: 'topLevelOpenFolderWeb',
|
|
57
|
-
title: (
|
|
58
|
-
description: (
|
|
56
|
+
title: ( localize(7390, "Open Folder...")),
|
|
57
|
+
description: ( localize(7390, "Open a folder to start working")),
|
|
59
58
|
icon: Codicon.folderOpened,
|
|
60
59
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
61
60
|
content: {
|
|
@@ -65,8 +64,8 @@ const startEntries = [
|
|
|
65
64
|
},
|
|
66
65
|
{
|
|
67
66
|
id: 'topLevelGitClone',
|
|
68
|
-
title: (
|
|
69
|
-
description: (
|
|
67
|
+
title: ( localize(7391, "Clone Git Repository...")),
|
|
68
|
+
description: ( localize(7392, "Clone a remote repository to a local folder")),
|
|
70
69
|
when: 'config.git.enabled && !git.missing',
|
|
71
70
|
icon: Codicon.sourceControl,
|
|
72
71
|
content: {
|
|
@@ -76,10 +75,9 @@ const startEntries = [
|
|
|
76
75
|
},
|
|
77
76
|
{
|
|
78
77
|
id: 'topLevelGitOpen',
|
|
79
|
-
title: (
|
|
80
|
-
description: (
|
|
81
|
-
|
|
82
|
-
13,
|
|
78
|
+
title: ( localize(7393, "Open Repository...")),
|
|
79
|
+
description: ( localize(
|
|
80
|
+
7394,
|
|
83
81
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
84
82
|
)),
|
|
85
83
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -91,8 +89,8 @@ const startEntries = [
|
|
|
91
89
|
},
|
|
92
90
|
{
|
|
93
91
|
id: 'topLevelShowWalkthroughs',
|
|
94
|
-
title: (
|
|
95
|
-
description: (
|
|
92
|
+
title: ( localize(7395, "Open a Walkthrough...")),
|
|
93
|
+
description: ( localize(7396, "View a walkthrough on the editor or an extension")),
|
|
96
94
|
icon: Codicon.checklist,
|
|
97
95
|
when: 'allWalkthroughsHidden',
|
|
98
96
|
content: {
|
|
@@ -102,8 +100,8 @@ const startEntries = [
|
|
|
102
100
|
},
|
|
103
101
|
{
|
|
104
102
|
id: 'topLevelRemoteOpen',
|
|
105
|
-
title: (
|
|
106
|
-
description: (
|
|
103
|
+
title: ( localize(7397, "Connect to...")),
|
|
104
|
+
description: ( localize(7398, "Connect to remote development workspaces.")),
|
|
107
105
|
when: '!isWeb',
|
|
108
106
|
icon: Codicon.remote,
|
|
109
107
|
content: {
|
|
@@ -113,8 +111,8 @@ const startEntries = [
|
|
|
113
111
|
},
|
|
114
112
|
{
|
|
115
113
|
id: 'topLevelOpenTunnel',
|
|
116
|
-
title: (
|
|
117
|
-
description: (
|
|
114
|
+
title: ( localize(7399, "Open Tunnel...")),
|
|
115
|
+
description: ( localize(7400, "Connect to a remote machine through a Tunnel")),
|
|
118
116
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
119
117
|
icon: Codicon.remote,
|
|
120
118
|
content: {
|
|
@@ -127,8 +125,8 @@ const Button = (title, href) => `[${title}](${href})`;
|
|
|
127
125
|
const walkthroughs = [
|
|
128
126
|
{
|
|
129
127
|
id: 'Setup',
|
|
130
|
-
title: (
|
|
131
|
-
description: (
|
|
128
|
+
title: ( localize(7401, "Get Started with VS Code")),
|
|
129
|
+
description: ( localize(7402, "Customize your editor, learn the basics, and start coding")),
|
|
132
130
|
isFeatured: true,
|
|
133
131
|
icon: setupIcon,
|
|
134
132
|
when: '!isWeb',
|
|
@@ -138,12 +136,11 @@ const walkthroughs = [
|
|
|
138
136
|
steps: [
|
|
139
137
|
{
|
|
140
138
|
id: 'pickColorTheme',
|
|
141
|
-
title: (
|
|
142
|
-
description: (
|
|
143
|
-
|
|
144
|
-
23,
|
|
139
|
+
title: ( localize(7403, "Choose your theme")),
|
|
140
|
+
description: ( localize(
|
|
141
|
+
7404,
|
|
145
142
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
146
|
-
Button((
|
|
143
|
+
Button(( localize(7405, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
147
144
|
)),
|
|
148
145
|
completionEvents: [
|
|
149
146
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -153,12 +150,11 @@ const walkthroughs = [
|
|
|
153
150
|
},
|
|
154
151
|
{
|
|
155
152
|
id: 'extensionsWeb',
|
|
156
|
-
title: (
|
|
157
|
-
description: (
|
|
158
|
-
|
|
159
|
-
26,
|
|
153
|
+
title: ( localize(7406, "Code with extensions")),
|
|
154
|
+
description: ( localize(
|
|
155
|
+
7407,
|
|
160
156
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
161
|
-
Button((
|
|
157
|
+
Button(( localize(7408, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
162
158
|
)),
|
|
163
159
|
when: 'workspacePlatform == \'webworker\'',
|
|
164
160
|
media: {
|
|
@@ -167,12 +163,11 @@ const walkthroughs = [
|
|
|
167
163
|
},
|
|
168
164
|
{
|
|
169
165
|
id: 'findLanguageExtensions',
|
|
170
|
-
title: (
|
|
171
|
-
description: (
|
|
172
|
-
|
|
173
|
-
29,
|
|
166
|
+
title: ( localize(7409, "Rich support for all your languages")),
|
|
167
|
+
description: ( localize(
|
|
168
|
+
7410,
|
|
174
169
|
"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}",
|
|
175
|
-
Button((
|
|
170
|
+
Button(( localize(7411, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
176
171
|
)),
|
|
177
172
|
when: 'workspacePlatform != \'webworker\'',
|
|
178
173
|
media: {
|
|
@@ -181,12 +176,11 @@ const walkthroughs = [
|
|
|
181
176
|
},
|
|
182
177
|
{
|
|
183
178
|
id: 'settings',
|
|
184
|
-
title: (
|
|
185
|
-
description: (
|
|
186
|
-
|
|
187
|
-
32,
|
|
179
|
+
title: ( localize(7412, "Tune your settings")),
|
|
180
|
+
description: ( localize(
|
|
181
|
+
7413,
|
|
188
182
|
"Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
|
|
189
|
-
Button((
|
|
183
|
+
Button(( localize(7414, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
190
184
|
)),
|
|
191
185
|
media: {
|
|
192
186
|
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
@@ -194,12 +188,11 @@ const walkthroughs = [
|
|
|
194
188
|
},
|
|
195
189
|
{
|
|
196
190
|
id: 'settingsSync',
|
|
197
|
-
title: (
|
|
198
|
-
description: (
|
|
199
|
-
|
|
200
|
-
35,
|
|
191
|
+
title: ( localize(7415, "Sync settings across devices")),
|
|
192
|
+
description: ( localize(
|
|
193
|
+
7416,
|
|
201
194
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
202
|
-
Button((
|
|
195
|
+
Button(( localize(7417, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
203
196
|
)),
|
|
204
197
|
when: 'syncStatus != uninitialized',
|
|
205
198
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -209,23 +202,21 @@ const walkthroughs = [
|
|
|
209
202
|
},
|
|
210
203
|
{
|
|
211
204
|
id: 'commandPaletteTask',
|
|
212
|
-
title: (
|
|
213
|
-
description: (
|
|
214
|
-
|
|
215
|
-
38,
|
|
205
|
+
title: ( localize(7418, "Unlock productivity with the Command Palette ")),
|
|
206
|
+
description: ( localize(
|
|
207
|
+
7419,
|
|
216
208
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
217
|
-
Button((
|
|
209
|
+
Button(( localize(7420, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
218
210
|
)),
|
|
219
211
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
220
212
|
},
|
|
221
213
|
{
|
|
222
214
|
id: 'pickAFolderTask-Mac',
|
|
223
|
-
title: (
|
|
224
|
-
description: (
|
|
225
|
-
|
|
226
|
-
41,
|
|
215
|
+
title: ( localize(7421, "Open up your code")),
|
|
216
|
+
description: ( localize(
|
|
217
|
+
7422,
|
|
227
218
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
228
|
-
Button((
|
|
219
|
+
Button(( localize(7423, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
|
|
229
220
|
)),
|
|
230
221
|
when: 'isMac && workspaceFolderCount == 0',
|
|
231
222
|
media: {
|
|
@@ -234,12 +225,11 @@ const walkthroughs = [
|
|
|
234
225
|
},
|
|
235
226
|
{
|
|
236
227
|
id: 'pickAFolderTask-Other',
|
|
237
|
-
title: (
|
|
238
|
-
description: (
|
|
239
|
-
|
|
240
|
-
41,
|
|
228
|
+
title: ( localize(7423, "Open up your code")),
|
|
229
|
+
description: ( localize(
|
|
230
|
+
7423,
|
|
241
231
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
242
|
-
Button((
|
|
232
|
+
Button(( localize(7423, "Pick a Folder")), 'command:workbench.action.files.openFolder')
|
|
243
233
|
)),
|
|
244
234
|
when: '!isMac && workspaceFolderCount == 0',
|
|
245
235
|
media: {
|
|
@@ -248,12 +238,11 @@ const walkthroughs = [
|
|
|
248
238
|
},
|
|
249
239
|
{
|
|
250
240
|
id: 'quickOpen',
|
|
251
|
-
title: (
|
|
252
|
-
description: (
|
|
253
|
-
|
|
254
|
-
44,
|
|
241
|
+
title: ( localize(7424, "Quickly navigate between your files")),
|
|
242
|
+
description: ( localize(
|
|
243
|
+
7425,
|
|
255
244
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
256
|
-
Button((
|
|
245
|
+
Button(( localize(7426, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
257
246
|
)),
|
|
258
247
|
when: 'workspaceFolderCount != 0',
|
|
259
248
|
media: {
|
|
@@ -262,12 +251,11 @@ const walkthroughs = [
|
|
|
262
251
|
},
|
|
263
252
|
{
|
|
264
253
|
id: 'videoTutorial',
|
|
265
|
-
title: (
|
|
266
|
-
description: (
|
|
267
|
-
|
|
268
|
-
47,
|
|
254
|
+
title: ( localize(7427, "Watch video tutorials")),
|
|
255
|
+
description: ( localize(
|
|
256
|
+
7428,
|
|
269
257
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
270
|
-
Button((
|
|
258
|
+
Button(( localize(7429, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
271
259
|
)),
|
|
272
260
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
273
261
|
}
|
|
@@ -276,8 +264,8 @@ const walkthroughs = [
|
|
|
276
264
|
},
|
|
277
265
|
{
|
|
278
266
|
id: 'SetupWeb',
|
|
279
|
-
title: (
|
|
280
|
-
description: (
|
|
267
|
+
title: ( localize(7430, "Get Started with VS Code for the Web")),
|
|
268
|
+
description: ( localize(7431, "Customize your editor, learn the basics, and start coding")),
|
|
281
269
|
isFeatured: true,
|
|
282
270
|
icon: setupIcon,
|
|
283
271
|
when: 'isWeb',
|
|
@@ -287,12 +275,11 @@ const walkthroughs = [
|
|
|
287
275
|
steps: [
|
|
288
276
|
{
|
|
289
277
|
id: 'pickColorThemeWeb',
|
|
290
|
-
title: (
|
|
291
|
-
description: (
|
|
292
|
-
|
|
293
|
-
23,
|
|
278
|
+
title: ( localize(7431, "Choose your theme")),
|
|
279
|
+
description: ( localize(
|
|
280
|
+
7431,
|
|
294
281
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
295
|
-
Button((
|
|
282
|
+
Button(( localize(7431, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
296
283
|
)),
|
|
297
284
|
completionEvents: [
|
|
298
285
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -302,12 +289,11 @@ const walkthroughs = [
|
|
|
302
289
|
},
|
|
303
290
|
{
|
|
304
291
|
id: 'menuBarWeb',
|
|
305
|
-
title: (
|
|
306
|
-
description: (
|
|
307
|
-
|
|
308
|
-
52,
|
|
292
|
+
title: ( localize(7432, "Just the right amount of UI")),
|
|
293
|
+
description: ( localize(
|
|
294
|
+
7433,
|
|
309
295
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
310
|
-
Button((
|
|
296
|
+
Button(( localize(7434, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
311
297
|
)),
|
|
312
298
|
when: 'isWeb',
|
|
313
299
|
media: {
|
|
@@ -316,12 +302,11 @@ const walkthroughs = [
|
|
|
316
302
|
},
|
|
317
303
|
{
|
|
318
304
|
id: 'extensionsWebWeb',
|
|
319
|
-
title: (
|
|
320
|
-
description: (
|
|
321
|
-
|
|
322
|
-
26,
|
|
305
|
+
title: ( localize(7434, "Code with extensions")),
|
|
306
|
+
description: ( localize(
|
|
307
|
+
7434,
|
|
323
308
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
324
|
-
Button((
|
|
309
|
+
Button(( localize(7434, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
325
310
|
)),
|
|
326
311
|
when: 'workspacePlatform == \'webworker\'',
|
|
327
312
|
media: {
|
|
@@ -330,12 +315,11 @@ const walkthroughs = [
|
|
|
330
315
|
},
|
|
331
316
|
{
|
|
332
317
|
id: 'findLanguageExtensionsWeb',
|
|
333
|
-
title: (
|
|
334
|
-
description: (
|
|
335
|
-
|
|
336
|
-
29,
|
|
318
|
+
title: ( localize(7434, "Rich support for all your languages")),
|
|
319
|
+
description: ( localize(
|
|
320
|
+
7434,
|
|
337
321
|
"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}",
|
|
338
|
-
Button((
|
|
322
|
+
Button(( localize(7434, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
339
323
|
)),
|
|
340
324
|
when: 'workspacePlatform != \'webworker\'',
|
|
341
325
|
media: {
|
|
@@ -344,12 +328,11 @@ const walkthroughs = [
|
|
|
344
328
|
},
|
|
345
329
|
{
|
|
346
330
|
id: 'settingsSyncWeb',
|
|
347
|
-
title: (
|
|
348
|
-
description: (
|
|
349
|
-
|
|
350
|
-
35,
|
|
331
|
+
title: ( localize(7434, "Sync settings across devices")),
|
|
332
|
+
description: ( localize(
|
|
333
|
+
7434,
|
|
351
334
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
352
|
-
Button((
|
|
335
|
+
Button(( localize(7434, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
353
336
|
)),
|
|
354
337
|
when: 'syncStatus != uninitialized',
|
|
355
338
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -359,24 +342,22 @@ const walkthroughs = [
|
|
|
359
342
|
},
|
|
360
343
|
{
|
|
361
344
|
id: 'commandPaletteTaskWeb',
|
|
362
|
-
title: (
|
|
363
|
-
description: (
|
|
364
|
-
|
|
365
|
-
38,
|
|
345
|
+
title: ( localize(7434, "Unlock productivity with the Command Palette ")),
|
|
346
|
+
description: ( localize(
|
|
347
|
+
7434,
|
|
366
348
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
367
|
-
Button((
|
|
349
|
+
Button(( localize(7434, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
368
350
|
)),
|
|
369
351
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
370
352
|
},
|
|
371
353
|
{
|
|
372
354
|
id: 'pickAFolderTask-WebWeb',
|
|
373
|
-
title: (
|
|
374
|
-
description: (
|
|
375
|
-
|
|
376
|
-
54,
|
|
355
|
+
title: ( localize(7434, "Open up your code")),
|
|
356
|
+
description: ( localize(
|
|
357
|
+
7435,
|
|
377
358
|
"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}",
|
|
378
|
-
Button((
|
|
379
|
-
Button((
|
|
359
|
+
Button(( localize(7436, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
360
|
+
Button(( localize(7437, "Open Repository")), 'command:remoteHub.openRepository')
|
|
380
361
|
)),
|
|
381
362
|
when: 'workspaceFolderCount == 0',
|
|
382
363
|
media: {
|
|
@@ -385,12 +366,11 @@ const walkthroughs = [
|
|
|
385
366
|
},
|
|
386
367
|
{
|
|
387
368
|
id: 'quickOpenWeb',
|
|
388
|
-
title: (
|
|
389
|
-
description: (
|
|
390
|
-
|
|
391
|
-
44,
|
|
369
|
+
title: ( localize(7437, "Quickly navigate between your files")),
|
|
370
|
+
description: ( localize(
|
|
371
|
+
7437,
|
|
392
372
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
393
|
-
Button((
|
|
373
|
+
Button(( localize(7437, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
394
374
|
)),
|
|
395
375
|
when: 'workspaceFolderCount != 0',
|
|
396
376
|
media: {
|
|
@@ -403,20 +383,19 @@ const walkthroughs = [
|
|
|
403
383
|
{
|
|
404
384
|
id: 'Beginner',
|
|
405
385
|
isFeatured: false,
|
|
406
|
-
title: (
|
|
386
|
+
title: ( localize(7438, "Learn the Fundamentals")),
|
|
407
387
|
icon: beginnerIcon,
|
|
408
|
-
description: (
|
|
388
|
+
description: ( localize(7439, "Get an overview of the most essential features")),
|
|
409
389
|
content: {
|
|
410
390
|
type: 'steps',
|
|
411
391
|
steps: [
|
|
412
392
|
{
|
|
413
393
|
id: 'extensions',
|
|
414
|
-
title: (
|
|
415
|
-
description: (
|
|
416
|
-
|
|
417
|
-
59,
|
|
394
|
+
title: ( localize(7439, "Code with extensions")),
|
|
395
|
+
description: ( localize(
|
|
396
|
+
7440,
|
|
418
397
|
"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}",
|
|
419
|
-
Button((
|
|
398
|
+
Button(( localize(7441, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
420
399
|
)),
|
|
421
400
|
when: 'workspacePlatform != \'webworker\'',
|
|
422
401
|
media: {
|
|
@@ -425,12 +404,11 @@ const walkthroughs = [
|
|
|
425
404
|
},
|
|
426
405
|
{
|
|
427
406
|
id: 'terminal',
|
|
428
|
-
title: (
|
|
429
|
-
description: (
|
|
430
|
-
|
|
431
|
-
62,
|
|
407
|
+
title: ( localize(7442, "Built-in terminal")),
|
|
408
|
+
description: ( localize(
|
|
409
|
+
7443,
|
|
432
410
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
433
|
-
Button((
|
|
411
|
+
Button(( localize(7444, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
434
412
|
)),
|
|
435
413
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
436
414
|
media: {
|
|
@@ -439,12 +417,11 @@ const walkthroughs = [
|
|
|
439
417
|
},
|
|
440
418
|
{
|
|
441
419
|
id: 'debugging',
|
|
442
|
-
title: (
|
|
443
|
-
description: (
|
|
444
|
-
|
|
445
|
-
65,
|
|
420
|
+
title: ( localize(7445, "Watch your code in action")),
|
|
421
|
+
description: ( localize(
|
|
422
|
+
7446,
|
|
446
423
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
447
|
-
Button((
|
|
424
|
+
Button(( localize(7447, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
448
425
|
)),
|
|
449
426
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
450
427
|
media: {
|
|
@@ -453,12 +430,11 @@ const walkthroughs = [
|
|
|
453
430
|
},
|
|
454
431
|
{
|
|
455
432
|
id: 'scmClone',
|
|
456
|
-
title: (
|
|
457
|
-
description: (
|
|
458
|
-
|
|
459
|
-
68,
|
|
433
|
+
title: ( localize(7448, "Track your code with Git")),
|
|
434
|
+
description: ( localize(
|
|
435
|
+
7449,
|
|
460
436
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
461
|
-
Button((
|
|
437
|
+
Button(( localize(7450, "Clone Repository")), 'command:git.clone')
|
|
462
438
|
)),
|
|
463
439
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
464
440
|
media: {
|
|
@@ -467,12 +443,11 @@ const walkthroughs = [
|
|
|
467
443
|
},
|
|
468
444
|
{
|
|
469
445
|
id: 'scmSetup',
|
|
470
|
-
title: (
|
|
471
|
-
description: (
|
|
472
|
-
|
|
473
|
-
70,
|
|
446
|
+
title: ( localize(7450, "Track your code with Git")),
|
|
447
|
+
description: ( localize(
|
|
448
|
+
7451,
|
|
474
449
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
475
|
-
Button((
|
|
450
|
+
Button(( localize(7452, "Initialize Git Repository")), 'command:git.init')
|
|
476
451
|
)),
|
|
477
452
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
478
453
|
media: {
|
|
@@ -481,12 +456,11 @@ const walkthroughs = [
|
|
|
481
456
|
},
|
|
482
457
|
{
|
|
483
458
|
id: 'scm',
|
|
484
|
-
title: (
|
|
485
|
-
description: (
|
|
486
|
-
|
|
487
|
-
72,
|
|
459
|
+
title: ( localize(7452, "Track your code with Git")),
|
|
460
|
+
description: ( localize(
|
|
461
|
+
7453,
|
|
488
462
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
489
|
-
Button((
|
|
463
|
+
Button(( localize(7454, "Open Source Control")), 'command:workbench.view.scm')
|
|
490
464
|
)),
|
|
491
465
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
492
466
|
media: {
|
|
@@ -495,12 +469,11 @@ const walkthroughs = [
|
|
|
495
469
|
},
|
|
496
470
|
{
|
|
497
471
|
id: 'installGit',
|
|
498
|
-
title: (
|
|
499
|
-
description: (
|
|
500
|
-
|
|
501
|
-
75,
|
|
472
|
+
title: ( localize(7455, "Install Git")),
|
|
473
|
+
description: ( localize(
|
|
474
|
+
7456,
|
|
502
475
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
503
|
-
Button((
|
|
476
|
+
Button(( localize(7457, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
504
477
|
'[',
|
|
505
478
|
'](command:workbench.action.reloadWindow)'
|
|
506
479
|
)),
|
|
@@ -514,13 +487,12 @@ const walkthroughs = [
|
|
|
514
487
|
},
|
|
515
488
|
{
|
|
516
489
|
id: 'tasks',
|
|
517
|
-
title: (
|
|
490
|
+
title: ( localize(7458, "Automate your project tasks")),
|
|
518
491
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
519
|
-
description: (
|
|
520
|
-
|
|
521
|
-
78,
|
|
492
|
+
description: ( localize(
|
|
493
|
+
7459,
|
|
522
494
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
523
|
-
Button((
|
|
495
|
+
Button(( localize(7460, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
524
496
|
)),
|
|
525
497
|
media: {
|
|
526
498
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -528,12 +500,11 @@ const walkthroughs = [
|
|
|
528
500
|
},
|
|
529
501
|
{
|
|
530
502
|
id: 'shortcuts',
|
|
531
|
-
title: (
|
|
532
|
-
description: (
|
|
533
|
-
|
|
534
|
-
81,
|
|
503
|
+
title: ( localize(7461, "Customize your shortcuts")),
|
|
504
|
+
description: ( localize(
|
|
505
|
+
7462,
|
|
535
506
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
536
|
-
Button((
|
|
507
|
+
Button(( localize(7463, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
537
508
|
)),
|
|
538
509
|
media: {
|
|
539
510
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -541,13 +512,12 @@ const walkthroughs = [
|
|
|
541
512
|
},
|
|
542
513
|
{
|
|
543
514
|
id: 'workspaceTrust',
|
|
544
|
-
title: (
|
|
545
|
-
description: (
|
|
546
|
-
|
|
547
|
-
84,
|
|
515
|
+
title: ( localize(7464, "Safely browse and edit code")),
|
|
516
|
+
description: ( localize(
|
|
517
|
+
7465,
|
|
548
518
|
"{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.",
|
|
549
|
-
Button((
|
|
550
|
-
Button((
|
|
519
|
+
Button(( localize(7466, "Workspace Trust")), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
|
|
520
|
+
Button(( localize(7467, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
551
521
|
)),
|
|
552
522
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
553
523
|
media: {
|
|
@@ -559,7 +529,7 @@ const walkthroughs = [
|
|
|
559
529
|
},
|
|
560
530
|
{
|
|
561
531
|
id: 'notebooks',
|
|
562
|
-
title: (
|
|
532
|
+
title: ( localize(7468, "Customize Notebooks")),
|
|
563
533
|
description: '',
|
|
564
534
|
icon: setupIcon,
|
|
565
535
|
isFeatured: false,
|
|
@@ -570,8 +540,8 @@ const walkthroughs = [
|
|
|
570
540
|
{
|
|
571
541
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
572
542
|
id: 'notebookProfile',
|
|
573
|
-
title: (
|
|
574
|
-
description: (
|
|
543
|
+
title: ( localize(7469, "Select the layout for your notebooks")),
|
|
544
|
+
description: ( localize(7470, "Get notebooks to feel just the way you prefer")),
|
|
575
545
|
when: 'userHasOpenedNotebook',
|
|
576
546
|
media: {
|
|
577
547
|
type: 'markdown', path: 'notebookProfile'
|