@codingame/monaco-vscode-walkthrough-service-override 4.5.1 → 4.5.2
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 +50 -107
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +138 -249
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +8 -35
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +61 -116
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +5 -4
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +3 -6
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +74 -77
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +29 -32
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +147 -498
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +4 -15
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +6 -25
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +5 -12
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +5 -12
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +24 -31
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughContentProvider.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +4 -3
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -5,29 +5,14 @@ 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
|
-
|
|
10
|
-
|
|
11
|
-
"Icon used for the setup category of welcome page"
|
|
12
|
-
)));
|
|
13
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localizeWithPath(
|
|
14
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
15
|
-
'getting-started-beginner-icon',
|
|
16
|
-
"Icon used for the beginner category of welcome page"
|
|
17
|
-
)));
|
|
8
|
+
const _moduleId = "vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent";
|
|
9
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localizeWithPath(_moduleId, 0, "Icon used for the setup category of welcome page")));
|
|
10
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localizeWithPath(_moduleId, 1, "Icon used for the beginner category of welcome page")));
|
|
18
11
|
const startEntries = [
|
|
19
12
|
{
|
|
20
13
|
id: 'welcome.showNewFileEntries',
|
|
21
|
-
title: ( localizeWithPath(
|
|
22
|
-
|
|
23
|
-
'gettingStarted.newFile.title',
|
|
24
|
-
"New File..."
|
|
25
|
-
)),
|
|
26
|
-
description: ( localizeWithPath(
|
|
27
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
28
|
-
'gettingStarted.newFile.description',
|
|
29
|
-
"Open a new untitled text file, notebook, or custom editor."
|
|
30
|
-
)),
|
|
14
|
+
title: ( localizeWithPath(_moduleId, 2, "New File...")),
|
|
15
|
+
description: ( localizeWithPath(_moduleId, 3, "Open a new untitled text file, notebook, or custom editor.")),
|
|
31
16
|
icon: Codicon.newFile,
|
|
32
17
|
content: {
|
|
33
18
|
type: 'startEntry',
|
|
@@ -36,16 +21,8 @@ const startEntries = [
|
|
|
36
21
|
},
|
|
37
22
|
{
|
|
38
23
|
id: 'topLevelOpenMac',
|
|
39
|
-
title: ( localizeWithPath(
|
|
40
|
-
|
|
41
|
-
'gettingStarted.openMac.title',
|
|
42
|
-
"Open..."
|
|
43
|
-
)),
|
|
44
|
-
description: ( localizeWithPath(
|
|
45
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
46
|
-
'gettingStarted.openMac.description',
|
|
47
|
-
"Open a file or folder to start working"
|
|
48
|
-
)),
|
|
24
|
+
title: ( localizeWithPath(_moduleId, 4, "Open...")),
|
|
25
|
+
description: ( localizeWithPath(_moduleId, 5, "Open a file or folder to start working")),
|
|
49
26
|
icon: Codicon.folderOpened,
|
|
50
27
|
when: '!isWeb && isMac',
|
|
51
28
|
content: {
|
|
@@ -55,16 +32,8 @@ const startEntries = [
|
|
|
55
32
|
},
|
|
56
33
|
{
|
|
57
34
|
id: 'topLevelOpenFile',
|
|
58
|
-
title: ( localizeWithPath(
|
|
59
|
-
|
|
60
|
-
'gettingStarted.openFile.title',
|
|
61
|
-
"Open File..."
|
|
62
|
-
)),
|
|
63
|
-
description: ( localizeWithPath(
|
|
64
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
65
|
-
'gettingStarted.openFile.description',
|
|
66
|
-
"Open a file to start working"
|
|
67
|
-
)),
|
|
35
|
+
title: ( localizeWithPath(_moduleId, 6, "Open File...")),
|
|
36
|
+
description: ( localizeWithPath(_moduleId, 7, "Open a file to start working")),
|
|
68
37
|
icon: Codicon.goToFile,
|
|
69
38
|
when: 'isWeb || !isMac',
|
|
70
39
|
content: {
|
|
@@ -74,16 +43,8 @@ const startEntries = [
|
|
|
74
43
|
},
|
|
75
44
|
{
|
|
76
45
|
id: 'topLevelOpenFolder',
|
|
77
|
-
title: ( localizeWithPath(
|
|
78
|
-
|
|
79
|
-
'gettingStarted.openFolder.title',
|
|
80
|
-
"Open Folder..."
|
|
81
|
-
)),
|
|
82
|
-
description: ( localizeWithPath(
|
|
83
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
84
|
-
'gettingStarted.openFolder.description',
|
|
85
|
-
"Open a folder to start working"
|
|
86
|
-
)),
|
|
46
|
+
title: ( localizeWithPath(_moduleId, 8, "Open Folder...")),
|
|
47
|
+
description: ( localizeWithPath(_moduleId, 9, "Open a folder to start working")),
|
|
87
48
|
icon: Codicon.folderOpened,
|
|
88
49
|
when: '!isWeb && !isMac',
|
|
89
50
|
content: {
|
|
@@ -93,16 +54,8 @@ const startEntries = [
|
|
|
93
54
|
},
|
|
94
55
|
{
|
|
95
56
|
id: 'topLevelOpenFolderWeb',
|
|
96
|
-
title: ( localizeWithPath(
|
|
97
|
-
|
|
98
|
-
'gettingStarted.openFolder.title',
|
|
99
|
-
"Open Folder..."
|
|
100
|
-
)),
|
|
101
|
-
description: ( localizeWithPath(
|
|
102
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
103
|
-
'gettingStarted.openFolder.description',
|
|
104
|
-
"Open a folder to start working"
|
|
105
|
-
)),
|
|
57
|
+
title: ( localizeWithPath(_moduleId, 8, "Open Folder...")),
|
|
58
|
+
description: ( localizeWithPath(_moduleId, 9, "Open a folder to start working")),
|
|
106
59
|
icon: Codicon.folderOpened,
|
|
107
60
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
108
61
|
content: {
|
|
@@ -112,16 +65,8 @@ const startEntries = [
|
|
|
112
65
|
},
|
|
113
66
|
{
|
|
114
67
|
id: 'topLevelGitClone',
|
|
115
|
-
title: ( localizeWithPath(
|
|
116
|
-
|
|
117
|
-
'gettingStarted.topLevelGitClone.title',
|
|
118
|
-
"Clone Git Repository..."
|
|
119
|
-
)),
|
|
120
|
-
description: ( localizeWithPath(
|
|
121
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
122
|
-
'gettingStarted.topLevelGitClone.description',
|
|
123
|
-
"Clone a remote repository to a local folder"
|
|
124
|
-
)),
|
|
68
|
+
title: ( localizeWithPath(_moduleId, 10, "Clone Git Repository...")),
|
|
69
|
+
description: ( localizeWithPath(_moduleId, 11, "Clone a remote repository to a local folder")),
|
|
125
70
|
when: 'config.git.enabled && !git.missing',
|
|
126
71
|
icon: Codicon.sourceControl,
|
|
127
72
|
content: {
|
|
@@ -131,14 +76,10 @@ const startEntries = [
|
|
|
131
76
|
},
|
|
132
77
|
{
|
|
133
78
|
id: 'topLevelGitOpen',
|
|
134
|
-
title: ( localizeWithPath(
|
|
135
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
136
|
-
'gettingStarted.topLevelGitOpen.title',
|
|
137
|
-
"Open Repository..."
|
|
138
|
-
)),
|
|
79
|
+
title: ( localizeWithPath(_moduleId, 12, "Open Repository...")),
|
|
139
80
|
description: ( localizeWithPath(
|
|
140
|
-
|
|
141
|
-
|
|
81
|
+
_moduleId,
|
|
82
|
+
13,
|
|
142
83
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
143
84
|
)),
|
|
144
85
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -150,16 +91,8 @@ const startEntries = [
|
|
|
150
91
|
},
|
|
151
92
|
{
|
|
152
93
|
id: 'topLevelShowWalkthroughs',
|
|
153
|
-
title: ( localizeWithPath(
|
|
154
|
-
|
|
155
|
-
'gettingStarted.topLevelShowWalkthroughs.title',
|
|
156
|
-
"Open a Walkthrough..."
|
|
157
|
-
)),
|
|
158
|
-
description: ( localizeWithPath(
|
|
159
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
160
|
-
'gettingStarted.topLevelShowWalkthroughs.description',
|
|
161
|
-
"View a walkthrough on the editor or an extension"
|
|
162
|
-
)),
|
|
94
|
+
title: ( localizeWithPath(_moduleId, 14, "Open a Walkthrough...")),
|
|
95
|
+
description: ( localizeWithPath(_moduleId, 15, "View a walkthrough on the editor or an extension")),
|
|
163
96
|
icon: Codicon.checklist,
|
|
164
97
|
when: 'allWalkthroughsHidden',
|
|
165
98
|
content: {
|
|
@@ -169,16 +102,8 @@ const startEntries = [
|
|
|
169
102
|
},
|
|
170
103
|
{
|
|
171
104
|
id: 'topLevelRemoteOpen',
|
|
172
|
-
title: ( localizeWithPath(
|
|
173
|
-
|
|
174
|
-
'gettingStarted.topLevelRemoteOpen.title',
|
|
175
|
-
"Connect to..."
|
|
176
|
-
)),
|
|
177
|
-
description: ( localizeWithPath(
|
|
178
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
179
|
-
'gettingStarted.topLevelRemoteOpen.description',
|
|
180
|
-
"Connect to remote development workspaces."
|
|
181
|
-
)),
|
|
105
|
+
title: ( localizeWithPath(_moduleId, 16, "Connect to...")),
|
|
106
|
+
description: ( localizeWithPath(_moduleId, 17, "Connect to remote development workspaces.")),
|
|
182
107
|
when: '!isWeb',
|
|
183
108
|
icon: Codicon.remote,
|
|
184
109
|
content: {
|
|
@@ -188,16 +113,8 @@ const startEntries = [
|
|
|
188
113
|
},
|
|
189
114
|
{
|
|
190
115
|
id: 'topLevelOpenTunnel',
|
|
191
|
-
title: ( localizeWithPath(
|
|
192
|
-
|
|
193
|
-
'gettingStarted.topLevelOpenTunnel.title',
|
|
194
|
-
"Open Tunnel..."
|
|
195
|
-
)),
|
|
196
|
-
description: ( localizeWithPath(
|
|
197
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
198
|
-
'gettingStarted.topLevelOpenTunnel.description',
|
|
199
|
-
"Connect to a remote machine through a Tunnel"
|
|
200
|
-
)),
|
|
116
|
+
title: ( localizeWithPath(_moduleId, 18, "Open Tunnel...")),
|
|
117
|
+
description: ( localizeWithPath(_moduleId, 19, "Connect to a remote machine through a Tunnel")),
|
|
201
118
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
202
119
|
icon: Codicon.remote,
|
|
203
120
|
content: {
|
|
@@ -210,16 +127,8 @@ const Button = (title, href) => `[${title}](${href})`;
|
|
|
210
127
|
const walkthroughs = [
|
|
211
128
|
{
|
|
212
129
|
id: 'Setup',
|
|
213
|
-
title: ( localizeWithPath(
|
|
214
|
-
|
|
215
|
-
'gettingStarted.setup.title',
|
|
216
|
-
"Get Started with VS Code"
|
|
217
|
-
)),
|
|
218
|
-
description: ( localizeWithPath(
|
|
219
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
220
|
-
'gettingStarted.setup.description',
|
|
221
|
-
"Customize your editor, learn the basics, and start coding"
|
|
222
|
-
)),
|
|
130
|
+
title: ( localizeWithPath(_moduleId, 20, "Get Started with VS Code")),
|
|
131
|
+
description: ( localizeWithPath(_moduleId, 21, "Customize your editor, learn the basics, and start coding")),
|
|
223
132
|
isFeatured: true,
|
|
224
133
|
icon: setupIcon,
|
|
225
134
|
when: '!isWeb',
|
|
@@ -229,20 +138,12 @@ const walkthroughs = [
|
|
|
229
138
|
steps: [
|
|
230
139
|
{
|
|
231
140
|
id: 'pickColorTheme',
|
|
232
|
-
title: ( localizeWithPath(
|
|
233
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
234
|
-
'gettingStarted.pickColor.title',
|
|
235
|
-
"Choose your theme"
|
|
236
|
-
)),
|
|
141
|
+
title: ( localizeWithPath(_moduleId, 22, "Choose your theme")),
|
|
237
142
|
description: ( localizeWithPath(
|
|
238
|
-
|
|
239
|
-
|
|
143
|
+
_moduleId,
|
|
144
|
+
23,
|
|
240
145
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
241
|
-
Button(( localizeWithPath(
|
|
242
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
243
|
-
'titleID',
|
|
244
|
-
"Browse Color Themes"
|
|
245
|
-
)), 'command:workbench.action.selectTheme')
|
|
146
|
+
Button(( localizeWithPath(_moduleId, 24, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
246
147
|
)),
|
|
247
148
|
completionEvents: [
|
|
248
149
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -252,20 +153,12 @@ const walkthroughs = [
|
|
|
252
153
|
},
|
|
253
154
|
{
|
|
254
155
|
id: 'extensionsWeb',
|
|
255
|
-
title: ( localizeWithPath(
|
|
256
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
257
|
-
'gettingStarted.extensions.title',
|
|
258
|
-
"Code with extensions"
|
|
259
|
-
)),
|
|
156
|
+
title: ( localizeWithPath(_moduleId, 25, "Code with extensions")),
|
|
260
157
|
description: ( localizeWithPath(
|
|
261
|
-
|
|
262
|
-
|
|
158
|
+
_moduleId,
|
|
159
|
+
26,
|
|
263
160
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
264
|
-
Button(( localizeWithPath(
|
|
265
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
266
|
-
'browsePopular',
|
|
267
|
-
"Browse Popular Web Extensions"
|
|
268
|
-
)), 'command:workbench.extensions.action.showPopularExtensions')
|
|
161
|
+
Button(( localizeWithPath(_moduleId, 27, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
269
162
|
)),
|
|
270
163
|
when: 'workspacePlatform == \'webworker\'',
|
|
271
164
|
media: {
|
|
@@ -274,20 +167,12 @@ const walkthroughs = [
|
|
|
274
167
|
},
|
|
275
168
|
{
|
|
276
169
|
id: 'findLanguageExtensions',
|
|
277
|
-
title: ( localizeWithPath(
|
|
278
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
279
|
-
'gettingStarted.findLanguageExts.title',
|
|
280
|
-
"Rich support for all your languages"
|
|
281
|
-
)),
|
|
170
|
+
title: ( localizeWithPath(_moduleId, 28, "Rich support for all your languages")),
|
|
282
171
|
description: ( localizeWithPath(
|
|
283
|
-
|
|
284
|
-
|
|
172
|
+
_moduleId,
|
|
173
|
+
29,
|
|
285
174
|
"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}",
|
|
286
|
-
Button(( localizeWithPath(
|
|
287
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
288
|
-
'browseLangExts',
|
|
289
|
-
"Browse Language Extensions"
|
|
290
|
-
)), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
175
|
+
Button(( localizeWithPath(_moduleId, 30, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
291
176
|
)),
|
|
292
177
|
when: 'workspacePlatform != \'webworker\'',
|
|
293
178
|
media: {
|
|
@@ -296,20 +181,12 @@ const walkthroughs = [
|
|
|
296
181
|
},
|
|
297
182
|
{
|
|
298
183
|
id: 'settings',
|
|
299
|
-
title: ( localizeWithPath(
|
|
300
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
301
|
-
'gettingStarted.settings.title',
|
|
302
|
-
"Tune your settings"
|
|
303
|
-
)),
|
|
184
|
+
title: ( localizeWithPath(_moduleId, 31, "Tune your settings")),
|
|
304
185
|
description: ( localizeWithPath(
|
|
305
|
-
|
|
306
|
-
|
|
186
|
+
_moduleId,
|
|
187
|
+
32,
|
|
307
188
|
"Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
|
|
308
|
-
Button(( localizeWithPath(
|
|
309
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
310
|
-
'tweakSettings',
|
|
311
|
-
"Open Settings"
|
|
312
|
-
)), 'command:toSide:workbench.action.openSettings')
|
|
189
|
+
Button(( localizeWithPath(_moduleId, 33, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
313
190
|
)),
|
|
314
191
|
media: {
|
|
315
192
|
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
@@ -317,20 +194,12 @@ const walkthroughs = [
|
|
|
317
194
|
},
|
|
318
195
|
{
|
|
319
196
|
id: 'settingsSync',
|
|
320
|
-
title: ( localizeWithPath(
|
|
321
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
322
|
-
'gettingStarted.settingsSync.title',
|
|
323
|
-
"Sync settings across devices"
|
|
324
|
-
)),
|
|
197
|
+
title: ( localizeWithPath(_moduleId, 34, "Sync settings across devices")),
|
|
325
198
|
description: ( localizeWithPath(
|
|
326
|
-
|
|
327
|
-
|
|
199
|
+
_moduleId,
|
|
200
|
+
35,
|
|
328
201
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
329
|
-
Button(( localizeWithPath(
|
|
330
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
331
|
-
'enableSync',
|
|
332
|
-
"Backup and Sync Settings"
|
|
333
|
-
)), 'command:workbench.userDataSync.actions.turnOn')
|
|
202
|
+
Button(( localizeWithPath(_moduleId, 36, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
334
203
|
)),
|
|
335
204
|
when: 'syncStatus != uninitialized',
|
|
336
205
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -340,39 +209,23 @@ const walkthroughs = [
|
|
|
340
209
|
},
|
|
341
210
|
{
|
|
342
211
|
id: 'commandPaletteTask',
|
|
343
|
-
title: ( localizeWithPath(
|
|
344
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
345
|
-
'gettingStarted.commandPalette.title',
|
|
346
|
-
"Unlock productivity with the Command Palette "
|
|
347
|
-
)),
|
|
212
|
+
title: ( localizeWithPath(_moduleId, 37, "Unlock productivity with the Command Palette ")),
|
|
348
213
|
description: ( localizeWithPath(
|
|
349
|
-
|
|
350
|
-
|
|
214
|
+
_moduleId,
|
|
215
|
+
38,
|
|
351
216
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
352
|
-
Button(( localizeWithPath(
|
|
353
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
354
|
-
'commandPalette',
|
|
355
|
-
"Open Command Palette"
|
|
356
|
-
)), 'command:workbench.action.showCommands')
|
|
217
|
+
Button(( localizeWithPath(_moduleId, 39, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
357
218
|
)),
|
|
358
219
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
359
220
|
},
|
|
360
221
|
{
|
|
361
222
|
id: 'pickAFolderTask-Mac',
|
|
362
|
-
title: ( localizeWithPath(
|
|
363
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
364
|
-
'gettingStarted.setup.OpenFolder.title',
|
|
365
|
-
"Open up your code"
|
|
366
|
-
)),
|
|
223
|
+
title: ( localizeWithPath(_moduleId, 40, "Open up your code")),
|
|
367
224
|
description: ( localizeWithPath(
|
|
368
|
-
|
|
369
|
-
|
|
225
|
+
_moduleId,
|
|
226
|
+
41,
|
|
370
227
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
371
|
-
Button(( localizeWithPath(
|
|
372
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
373
|
-
'pickFolder',
|
|
374
|
-
"Pick a Folder"
|
|
375
|
-
)), 'command:workbench.action.files.openFileFolder')
|
|
228
|
+
Button(( localizeWithPath(_moduleId, 42, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
|
|
376
229
|
)),
|
|
377
230
|
when: 'isMac && workspaceFolderCount == 0',
|
|
378
231
|
media: {
|
|
@@ -381,20 +234,12 @@ const walkthroughs = [
|
|
|
381
234
|
},
|
|
382
235
|
{
|
|
383
236
|
id: 'pickAFolderTask-Other',
|
|
384
|
-
title: ( localizeWithPath(
|
|
385
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
386
|
-
'gettingStarted.setup.OpenFolder.title',
|
|
387
|
-
"Open up your code"
|
|
388
|
-
)),
|
|
237
|
+
title: ( localizeWithPath(_moduleId, 40, "Open up your code")),
|
|
389
238
|
description: ( localizeWithPath(
|
|
390
|
-
|
|
391
|
-
|
|
239
|
+
_moduleId,
|
|
240
|
+
41,
|
|
392
241
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
393
|
-
Button(( localizeWithPath(
|
|
394
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
395
|
-
'pickFolder',
|
|
396
|
-
"Pick a Folder"
|
|
397
|
-
)), 'command:workbench.action.files.openFolder')
|
|
242
|
+
Button(( localizeWithPath(_moduleId, 42, "Pick a Folder")), 'command:workbench.action.files.openFolder')
|
|
398
243
|
)),
|
|
399
244
|
when: '!isMac && workspaceFolderCount == 0',
|
|
400
245
|
media: {
|
|
@@ -403,20 +248,12 @@ const walkthroughs = [
|
|
|
403
248
|
},
|
|
404
249
|
{
|
|
405
250
|
id: 'quickOpen',
|
|
406
|
-
title: ( localizeWithPath(
|
|
407
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
408
|
-
'gettingStarted.quickOpen.title',
|
|
409
|
-
"Quickly navigate between your files"
|
|
410
|
-
)),
|
|
251
|
+
title: ( localizeWithPath(_moduleId, 43, "Quickly navigate between your files")),
|
|
411
252
|
description: ( localizeWithPath(
|
|
412
|
-
|
|
413
|
-
|
|
253
|
+
_moduleId,
|
|
254
|
+
44,
|
|
414
255
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
415
|
-
Button(( localizeWithPath(
|
|
416
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
417
|
-
'quickOpen',
|
|
418
|
-
"Quick Open a File"
|
|
419
|
-
)), 'command:toSide:workbench.action.quickOpen')
|
|
256
|
+
Button(( localizeWithPath(_moduleId, 45, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
420
257
|
)),
|
|
421
258
|
when: 'workspaceFolderCount != 0',
|
|
422
259
|
media: {
|
|
@@ -425,20 +262,12 @@ const walkthroughs = [
|
|
|
425
262
|
},
|
|
426
263
|
{
|
|
427
264
|
id: 'videoTutorial',
|
|
428
|
-
title: ( localizeWithPath(
|
|
429
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
430
|
-
'gettingStarted.videoTutorial.title',
|
|
431
|
-
"Watch video tutorials"
|
|
432
|
-
)),
|
|
265
|
+
title: ( localizeWithPath(_moduleId, 46, "Watch video tutorials")),
|
|
433
266
|
description: ( localizeWithPath(
|
|
434
|
-
|
|
435
|
-
|
|
267
|
+
_moduleId,
|
|
268
|
+
47,
|
|
436
269
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
437
|
-
Button(( localizeWithPath(
|
|
438
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
439
|
-
'watch',
|
|
440
|
-
"Watch Tutorial"
|
|
441
|
-
)), 'https://aka.ms/vscode-getting-started-video')
|
|
270
|
+
Button(( localizeWithPath(_moduleId, 48, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
442
271
|
)),
|
|
443
272
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
444
273
|
}
|
|
@@ -447,16 +276,8 @@ const walkthroughs = [
|
|
|
447
276
|
},
|
|
448
277
|
{
|
|
449
278
|
id: 'SetupWeb',
|
|
450
|
-
title: ( localizeWithPath(
|
|
451
|
-
|
|
452
|
-
'gettingStarted.setupWeb.title',
|
|
453
|
-
"Get Started with VS Code for the Web"
|
|
454
|
-
)),
|
|
455
|
-
description: ( localizeWithPath(
|
|
456
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
457
|
-
'gettingStarted.setupWeb.description',
|
|
458
|
-
"Customize your editor, learn the basics, and start coding"
|
|
459
|
-
)),
|
|
279
|
+
title: ( localizeWithPath(_moduleId, 49, "Get Started with VS Code for the Web")),
|
|
280
|
+
description: ( localizeWithPath(_moduleId, 50, "Customize your editor, learn the basics, and start coding")),
|
|
460
281
|
isFeatured: true,
|
|
461
282
|
icon: setupIcon,
|
|
462
283
|
when: 'isWeb',
|
|
@@ -466,20 +287,12 @@ const walkthroughs = [
|
|
|
466
287
|
steps: [
|
|
467
288
|
{
|
|
468
289
|
id: 'pickColorThemeWeb',
|
|
469
|
-
title: ( localizeWithPath(
|
|
470
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
471
|
-
'gettingStarted.pickColor.title',
|
|
472
|
-
"Choose your theme"
|
|
473
|
-
)),
|
|
290
|
+
title: ( localizeWithPath(_moduleId, 22, "Choose your theme")),
|
|
474
291
|
description: ( localizeWithPath(
|
|
475
|
-
|
|
476
|
-
|
|
292
|
+
_moduleId,
|
|
293
|
+
23,
|
|
477
294
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
478
|
-
Button(( localizeWithPath(
|
|
479
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
480
|
-
'titleID',
|
|
481
|
-
"Browse Color Themes"
|
|
482
|
-
)), 'command:workbench.action.selectTheme')
|
|
295
|
+
Button(( localizeWithPath(_moduleId, 24, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
483
296
|
)),
|
|
484
297
|
completionEvents: [
|
|
485
298
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -489,20 +302,12 @@ const walkthroughs = [
|
|
|
489
302
|
},
|
|
490
303
|
{
|
|
491
304
|
id: 'menuBarWeb',
|
|
492
|
-
title: ( localizeWithPath(
|
|
493
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
494
|
-
'gettingStarted.menuBar.title',
|
|
495
|
-
"Just the right amount of UI"
|
|
496
|
-
)),
|
|
305
|
+
title: ( localizeWithPath(_moduleId, 51, "Just the right amount of UI")),
|
|
497
306
|
description: ( localizeWithPath(
|
|
498
|
-
|
|
499
|
-
|
|
307
|
+
_moduleId,
|
|
308
|
+
52,
|
|
500
309
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
501
|
-
Button(( localizeWithPath(
|
|
502
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
503
|
-
'toggleMenuBar',
|
|
504
|
-
"Toggle Menu Bar"
|
|
505
|
-
)), 'command:workbench.action.toggleMenuBar')
|
|
310
|
+
Button(( localizeWithPath(_moduleId, 53, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
506
311
|
)),
|
|
507
312
|
when: 'isWeb',
|
|
508
313
|
media: {
|
|
@@ -511,20 +316,12 @@ const walkthroughs = [
|
|
|
511
316
|
},
|
|
512
317
|
{
|
|
513
318
|
id: 'extensionsWebWeb',
|
|
514
|
-
title: ( localizeWithPath(
|
|
515
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
516
|
-
'gettingStarted.extensions.title',
|
|
517
|
-
"Code with extensions"
|
|
518
|
-
)),
|
|
319
|
+
title: ( localizeWithPath(_moduleId, 25, "Code with extensions")),
|
|
519
320
|
description: ( localizeWithPath(
|
|
520
|
-
|
|
521
|
-
|
|
321
|
+
_moduleId,
|
|
322
|
+
26,
|
|
522
323
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
523
|
-
Button(( localizeWithPath(
|
|
524
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
525
|
-
'browsePopular',
|
|
526
|
-
"Browse Popular Web Extensions"
|
|
527
|
-
)), 'command:workbench.extensions.action.showPopularExtensions')
|
|
324
|
+
Button(( localizeWithPath(_moduleId, 27, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
528
325
|
)),
|
|
529
326
|
when: 'workspacePlatform == \'webworker\'',
|
|
530
327
|
media: {
|
|
@@ -533,20 +330,12 @@ const walkthroughs = [
|
|
|
533
330
|
},
|
|
534
331
|
{
|
|
535
332
|
id: 'findLanguageExtensionsWeb',
|
|
536
|
-
title: ( localizeWithPath(
|
|
537
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
538
|
-
'gettingStarted.findLanguageExts.title',
|
|
539
|
-
"Rich support for all your languages"
|
|
540
|
-
)),
|
|
333
|
+
title: ( localizeWithPath(_moduleId, 28, "Rich support for all your languages")),
|
|
541
334
|
description: ( localizeWithPath(
|
|
542
|
-
|
|
543
|
-
|
|
335
|
+
_moduleId,
|
|
336
|
+
29,
|
|
544
337
|
"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}",
|
|
545
|
-
Button(( localizeWithPath(
|
|
546
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
547
|
-
'browseLangExts',
|
|
548
|
-
"Browse Language Extensions"
|
|
549
|
-
)), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
338
|
+
Button(( localizeWithPath(_moduleId, 30, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
550
339
|
)),
|
|
551
340
|
when: 'workspacePlatform != \'webworker\'',
|
|
552
341
|
media: {
|
|
@@ -555,20 +344,12 @@ const walkthroughs = [
|
|
|
555
344
|
},
|
|
556
345
|
{
|
|
557
346
|
id: 'settingsSyncWeb',
|
|
558
|
-
title: ( localizeWithPath(
|
|
559
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
560
|
-
'gettingStarted.settingsSync.title',
|
|
561
|
-
"Sync settings across devices"
|
|
562
|
-
)),
|
|
347
|
+
title: ( localizeWithPath(_moduleId, 34, "Sync settings across devices")),
|
|
563
348
|
description: ( localizeWithPath(
|
|
564
|
-
|
|
565
|
-
|
|
349
|
+
_moduleId,
|
|
350
|
+
35,
|
|
566
351
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
567
|
-
Button(( localizeWithPath(
|
|
568
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
569
|
-
'enableSync',
|
|
570
|
-
"Backup and Sync Settings"
|
|
571
|
-
)), 'command:workbench.userDataSync.actions.turnOn')
|
|
352
|
+
Button(( localizeWithPath(_moduleId, 36, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
572
353
|
)),
|
|
573
354
|
when: 'syncStatus != uninitialized',
|
|
574
355
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -578,44 +359,24 @@ const walkthroughs = [
|
|
|
578
359
|
},
|
|
579
360
|
{
|
|
580
361
|
id: 'commandPaletteTaskWeb',
|
|
581
|
-
title: ( localizeWithPath(
|
|
582
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
583
|
-
'gettingStarted.commandPalette.title',
|
|
584
|
-
"Unlock productivity with the Command Palette "
|
|
585
|
-
)),
|
|
362
|
+
title: ( localizeWithPath(_moduleId, 37, "Unlock productivity with the Command Palette ")),
|
|
586
363
|
description: ( localizeWithPath(
|
|
587
|
-
|
|
588
|
-
|
|
364
|
+
_moduleId,
|
|
365
|
+
38,
|
|
589
366
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
590
|
-
Button(( localizeWithPath(
|
|
591
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
592
|
-
'commandPalette',
|
|
593
|
-
"Open Command Palette"
|
|
594
|
-
)), 'command:workbench.action.showCommands')
|
|
367
|
+
Button(( localizeWithPath(_moduleId, 39, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
595
368
|
)),
|
|
596
369
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
597
370
|
},
|
|
598
371
|
{
|
|
599
372
|
id: 'pickAFolderTask-WebWeb',
|
|
600
|
-
title: ( localizeWithPath(
|
|
601
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
602
|
-
'gettingStarted.setup.OpenFolder.title',
|
|
603
|
-
"Open up your code"
|
|
604
|
-
)),
|
|
373
|
+
title: ( localizeWithPath(_moduleId, 40, "Open up your code")),
|
|
605
374
|
description: ( localizeWithPath(
|
|
606
|
-
|
|
607
|
-
|
|
375
|
+
_moduleId,
|
|
376
|
+
54,
|
|
608
377
|
"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}",
|
|
609
|
-
Button(( localizeWithPath(
|
|
610
|
-
|
|
611
|
-
'openFolder',
|
|
612
|
-
"Open Folder"
|
|
613
|
-
)), 'command:workbench.action.addRootFolder'),
|
|
614
|
-
Button(( localizeWithPath(
|
|
615
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
616
|
-
'openRepository',
|
|
617
|
-
"Open Repository"
|
|
618
|
-
)), 'command:remoteHub.openRepository')
|
|
378
|
+
Button(( localizeWithPath(_moduleId, 55, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
379
|
+
Button(( localizeWithPath(_moduleId, 56, "Open Repository")), 'command:remoteHub.openRepository')
|
|
619
380
|
)),
|
|
620
381
|
when: 'workspaceFolderCount == 0',
|
|
621
382
|
media: {
|
|
@@ -624,20 +385,12 @@ const walkthroughs = [
|
|
|
624
385
|
},
|
|
625
386
|
{
|
|
626
387
|
id: 'quickOpenWeb',
|
|
627
|
-
title: ( localizeWithPath(
|
|
628
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
629
|
-
'gettingStarted.quickOpen.title',
|
|
630
|
-
"Quickly navigate between your files"
|
|
631
|
-
)),
|
|
388
|
+
title: ( localizeWithPath(_moduleId, 43, "Quickly navigate between your files")),
|
|
632
389
|
description: ( localizeWithPath(
|
|
633
|
-
|
|
634
|
-
|
|
390
|
+
_moduleId,
|
|
391
|
+
44,
|
|
635
392
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
636
|
-
Button(( localizeWithPath(
|
|
637
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
638
|
-
'quickOpen',
|
|
639
|
-
"Quick Open a File"
|
|
640
|
-
)), 'command:toSide:workbench.action.quickOpen')
|
|
393
|
+
Button(( localizeWithPath(_moduleId, 45, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
641
394
|
)),
|
|
642
395
|
when: 'workspaceFolderCount != 0',
|
|
643
396
|
media: {
|
|
@@ -650,36 +403,20 @@ const walkthroughs = [
|
|
|
650
403
|
{
|
|
651
404
|
id: 'Beginner',
|
|
652
405
|
isFeatured: false,
|
|
653
|
-
title: ( localizeWithPath(
|
|
654
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
655
|
-
'gettingStarted.beginner.title',
|
|
656
|
-
"Learn the Fundamentals"
|
|
657
|
-
)),
|
|
406
|
+
title: ( localizeWithPath(_moduleId, 57, "Learn the Fundamentals")),
|
|
658
407
|
icon: beginnerIcon,
|
|
659
|
-
description: ( localizeWithPath(
|
|
660
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
661
|
-
'gettingStarted.beginner.description',
|
|
662
|
-
"Get an overview of the most essential features"
|
|
663
|
-
)),
|
|
408
|
+
description: ( localizeWithPath(_moduleId, 58, "Get an overview of the most essential features")),
|
|
664
409
|
content: {
|
|
665
410
|
type: 'steps',
|
|
666
411
|
steps: [
|
|
667
412
|
{
|
|
668
413
|
id: 'extensions',
|
|
669
|
-
title: ( localizeWithPath(
|
|
670
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
671
|
-
'gettingStarted.extensions.title',
|
|
672
|
-
"Code with extensions"
|
|
673
|
-
)),
|
|
414
|
+
title: ( localizeWithPath(_moduleId, 25, "Code with extensions")),
|
|
674
415
|
description: ( localizeWithPath(
|
|
675
|
-
|
|
676
|
-
|
|
416
|
+
_moduleId,
|
|
417
|
+
59,
|
|
677
418
|
"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}",
|
|
678
|
-
Button(( localizeWithPath(
|
|
679
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
680
|
-
'browseRecommended',
|
|
681
|
-
"Browse Recommended Extensions"
|
|
682
|
-
)), 'command:workbench.extensions.action.showRecommendedExtensions')
|
|
419
|
+
Button(( localizeWithPath(_moduleId, 60, "Browse Recommended Extensions")), 'command:workbench.extensions.action.showRecommendedExtensions')
|
|
683
420
|
)),
|
|
684
421
|
when: 'workspacePlatform != \'webworker\'',
|
|
685
422
|
media: {
|
|
@@ -688,20 +425,12 @@ const walkthroughs = [
|
|
|
688
425
|
},
|
|
689
426
|
{
|
|
690
427
|
id: 'terminal',
|
|
691
|
-
title: ( localizeWithPath(
|
|
692
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
693
|
-
'gettingStarted.terminal.title',
|
|
694
|
-
"Built-in terminal"
|
|
695
|
-
)),
|
|
428
|
+
title: ( localizeWithPath(_moduleId, 61, "Built-in terminal")),
|
|
696
429
|
description: ( localizeWithPath(
|
|
697
|
-
|
|
698
|
-
|
|
430
|
+
_moduleId,
|
|
431
|
+
62,
|
|
699
432
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
700
|
-
Button(( localizeWithPath(
|
|
701
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
702
|
-
'showTerminal',
|
|
703
|
-
"Open Terminal"
|
|
704
|
-
)), 'command:workbench.action.terminal.toggleTerminal')
|
|
433
|
+
Button(( localizeWithPath(_moduleId, 63, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
705
434
|
)),
|
|
706
435
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
707
436
|
media: {
|
|
@@ -710,20 +439,12 @@ const walkthroughs = [
|
|
|
710
439
|
},
|
|
711
440
|
{
|
|
712
441
|
id: 'debugging',
|
|
713
|
-
title: ( localizeWithPath(
|
|
714
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
715
|
-
'gettingStarted.debug.title',
|
|
716
|
-
"Watch your code in action"
|
|
717
|
-
)),
|
|
442
|
+
title: ( localizeWithPath(_moduleId, 64, "Watch your code in action")),
|
|
718
443
|
description: ( localizeWithPath(
|
|
719
|
-
|
|
720
|
-
|
|
444
|
+
_moduleId,
|
|
445
|
+
65,
|
|
721
446
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
722
|
-
Button(( localizeWithPath(
|
|
723
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
724
|
-
'runProject',
|
|
725
|
-
"Run your Project"
|
|
726
|
-
)), 'command:workbench.action.debug.selectandstart')
|
|
447
|
+
Button(( localizeWithPath(_moduleId, 66, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
727
448
|
)),
|
|
728
449
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
729
450
|
media: {
|
|
@@ -732,20 +453,12 @@ const walkthroughs = [
|
|
|
732
453
|
},
|
|
733
454
|
{
|
|
734
455
|
id: 'scmClone',
|
|
735
|
-
title: ( localizeWithPath(
|
|
736
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
737
|
-
'gettingStarted.scm.title',
|
|
738
|
-
"Track your code with Git"
|
|
739
|
-
)),
|
|
456
|
+
title: ( localizeWithPath(_moduleId, 67, "Track your code with Git")),
|
|
740
457
|
description: ( localizeWithPath(
|
|
741
|
-
|
|
742
|
-
|
|
458
|
+
_moduleId,
|
|
459
|
+
68,
|
|
743
460
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
744
|
-
Button(( localizeWithPath(
|
|
745
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
746
|
-
'cloneRepo',
|
|
747
|
-
"Clone Repository"
|
|
748
|
-
)), 'command:git.clone')
|
|
461
|
+
Button(( localizeWithPath(_moduleId, 69, "Clone Repository")), 'command:git.clone')
|
|
749
462
|
)),
|
|
750
463
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
751
464
|
media: {
|
|
@@ -754,20 +467,12 @@ const walkthroughs = [
|
|
|
754
467
|
},
|
|
755
468
|
{
|
|
756
469
|
id: 'scmSetup',
|
|
757
|
-
title: ( localizeWithPath(
|
|
758
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
759
|
-
'gettingStarted.scm.title',
|
|
760
|
-
"Track your code with Git"
|
|
761
|
-
)),
|
|
470
|
+
title: ( localizeWithPath(_moduleId, 67, "Track your code with Git")),
|
|
762
471
|
description: ( localizeWithPath(
|
|
763
|
-
|
|
764
|
-
|
|
472
|
+
_moduleId,
|
|
473
|
+
70,
|
|
765
474
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
766
|
-
Button(( localizeWithPath(
|
|
767
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
768
|
-
'initRepo',
|
|
769
|
-
"Initialize Git Repository"
|
|
770
|
-
)), 'command:git.init')
|
|
475
|
+
Button(( localizeWithPath(_moduleId, 71, "Initialize Git Repository")), 'command:git.init')
|
|
771
476
|
)),
|
|
772
477
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
773
478
|
media: {
|
|
@@ -776,20 +481,12 @@ const walkthroughs = [
|
|
|
776
481
|
},
|
|
777
482
|
{
|
|
778
483
|
id: 'scm',
|
|
779
|
-
title: ( localizeWithPath(
|
|
780
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
781
|
-
'gettingStarted.scm.title',
|
|
782
|
-
"Track your code with Git"
|
|
783
|
-
)),
|
|
484
|
+
title: ( localizeWithPath(_moduleId, 67, "Track your code with Git")),
|
|
784
485
|
description: ( localizeWithPath(
|
|
785
|
-
|
|
786
|
-
|
|
486
|
+
_moduleId,
|
|
487
|
+
72,
|
|
787
488
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
788
|
-
Button(( localizeWithPath(
|
|
789
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
790
|
-
'openSCM',
|
|
791
|
-
"Open Source Control"
|
|
792
|
-
)), 'command:workbench.view.scm')
|
|
489
|
+
Button(( localizeWithPath(_moduleId, 73, "Open Source Control")), 'command:workbench.view.scm')
|
|
793
490
|
)),
|
|
794
491
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
795
492
|
media: {
|
|
@@ -798,20 +495,12 @@ const walkthroughs = [
|
|
|
798
495
|
},
|
|
799
496
|
{
|
|
800
497
|
id: 'installGit',
|
|
801
|
-
title: ( localizeWithPath(
|
|
802
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
803
|
-
'gettingStarted.installGit.title',
|
|
804
|
-
"Install Git"
|
|
805
|
-
)),
|
|
498
|
+
title: ( localizeWithPath(_moduleId, 74, "Install Git")),
|
|
806
499
|
description: ( localizeWithPath(
|
|
807
|
-
|
|
808
|
-
|
|
500
|
+
_moduleId,
|
|
501
|
+
75,
|
|
809
502
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
810
|
-
Button(( localizeWithPath(
|
|
811
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
812
|
-
'installGit',
|
|
813
|
-
"Install Git"
|
|
814
|
-
)), 'https://aka.ms/vscode-install-git'),
|
|
503
|
+
Button(( localizeWithPath(_moduleId, 76, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
815
504
|
'[',
|
|
816
505
|
'](command:workbench.action.reloadWindow)'
|
|
817
506
|
)),
|
|
@@ -825,21 +514,13 @@ const walkthroughs = [
|
|
|
825
514
|
},
|
|
826
515
|
{
|
|
827
516
|
id: 'tasks',
|
|
828
|
-
title: ( localizeWithPath(
|
|
829
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
830
|
-
'gettingStarted.tasks.title',
|
|
831
|
-
"Automate your project tasks"
|
|
832
|
-
)),
|
|
517
|
+
title: ( localizeWithPath(_moduleId, 77, "Automate your project tasks")),
|
|
833
518
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
834
519
|
description: ( localizeWithPath(
|
|
835
|
-
|
|
836
|
-
|
|
520
|
+
_moduleId,
|
|
521
|
+
78,
|
|
837
522
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
838
|
-
Button(( localizeWithPath(
|
|
839
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
840
|
-
'runTasks',
|
|
841
|
-
"Run Auto-detected Tasks"
|
|
842
|
-
)), 'command:workbench.action.tasks.runTask')
|
|
523
|
+
Button(( localizeWithPath(_moduleId, 79, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
843
524
|
)),
|
|
844
525
|
media: {
|
|
845
526
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -847,20 +528,12 @@ const walkthroughs = [
|
|
|
847
528
|
},
|
|
848
529
|
{
|
|
849
530
|
id: 'shortcuts',
|
|
850
|
-
title: ( localizeWithPath(
|
|
851
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
852
|
-
'gettingStarted.shortcuts.title',
|
|
853
|
-
"Customize your shortcuts"
|
|
854
|
-
)),
|
|
531
|
+
title: ( localizeWithPath(_moduleId, 80, "Customize your shortcuts")),
|
|
855
532
|
description: ( localizeWithPath(
|
|
856
|
-
|
|
857
|
-
|
|
533
|
+
_moduleId,
|
|
534
|
+
81,
|
|
858
535
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
859
|
-
Button(( localizeWithPath(
|
|
860
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
861
|
-
'keyboardShortcuts',
|
|
862
|
-
"Keyboard Shortcuts"
|
|
863
|
-
)), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
536
|
+
Button(( localizeWithPath(_moduleId, 82, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
864
537
|
)),
|
|
865
538
|
media: {
|
|
866
539
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -868,25 +541,13 @@ const walkthroughs = [
|
|
|
868
541
|
},
|
|
869
542
|
{
|
|
870
543
|
id: 'workspaceTrust',
|
|
871
|
-
title: ( localizeWithPath(
|
|
872
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
873
|
-
'gettingStarted.workspaceTrust.title',
|
|
874
|
-
"Safely browse and edit code"
|
|
875
|
-
)),
|
|
544
|
+
title: ( localizeWithPath(_moduleId, 83, "Safely browse and edit code")),
|
|
876
545
|
description: ( localizeWithPath(
|
|
877
|
-
|
|
878
|
-
|
|
546
|
+
_moduleId,
|
|
547
|
+
84,
|
|
879
548
|
"{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.",
|
|
880
|
-
Button(( localizeWithPath(
|
|
881
|
-
|
|
882
|
-
'workspaceTrust',
|
|
883
|
-
"Workspace Trust"
|
|
884
|
-
)), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
|
|
885
|
-
Button(( localizeWithPath(
|
|
886
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
887
|
-
'enableTrust',
|
|
888
|
-
"enable trust"
|
|
889
|
-
)), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
549
|
+
Button(( localizeWithPath(_moduleId, 85, "Workspace Trust")), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
|
|
550
|
+
Button(( localizeWithPath(_moduleId, 86, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
890
551
|
)),
|
|
891
552
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
892
553
|
media: {
|
|
@@ -898,11 +559,7 @@ const walkthroughs = [
|
|
|
898
559
|
},
|
|
899
560
|
{
|
|
900
561
|
id: 'notebooks',
|
|
901
|
-
title: ( localizeWithPath(
|
|
902
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
903
|
-
'gettingStarted.notebook.title',
|
|
904
|
-
"Customize Notebooks"
|
|
905
|
-
)),
|
|
562
|
+
title: ( localizeWithPath(_moduleId, 87, "Customize Notebooks")),
|
|
906
563
|
description: '',
|
|
907
564
|
icon: setupIcon,
|
|
908
565
|
isFeatured: false,
|
|
@@ -913,16 +570,8 @@ const walkthroughs = [
|
|
|
913
570
|
{
|
|
914
571
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
915
572
|
id: 'notebookProfile',
|
|
916
|
-
title: ( localizeWithPath(
|
|
917
|
-
|
|
918
|
-
'gettingStarted.notebookProfile.title',
|
|
919
|
-
"Select the layout for your notebooks"
|
|
920
|
-
)),
|
|
921
|
-
description: ( localizeWithPath(
|
|
922
|
-
'vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent',
|
|
923
|
-
'gettingStarted.notebookProfile.description',
|
|
924
|
-
"Get notebooks to feel just the way you prefer"
|
|
925
|
-
)),
|
|
573
|
+
title: ( localizeWithPath(_moduleId, 88, "Select the layout for your notebooks")),
|
|
574
|
+
description: ( localizeWithPath(_moduleId, 89, "Get notebooks to feel just the way you prefer")),
|
|
926
575
|
when: 'userHasOpenedNotebook',
|
|
927
576
|
media: {
|
|
928
577
|
type: 'markdown', path: 'notebookProfile'
|