@codingame/monaco-vscode-configuration-service-override 16.1.1 → 17.1.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.
Files changed (17) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +9 -8
  3. package/vscode/src/vs/workbench/api/common/configurationExtensionPoint.js +50 -50
  4. package/vscode/src/vs/workbench/contrib/workspaces/browser/workspaces.contribution.js +11 -11
  5. package/vscode/src/vs/workbench/services/configuration/browser/configuration.d.ts +3 -3
  6. package/vscode/src/vs/workbench/services/configuration/browser/configuration.js +1 -1
  7. package/vscode/src/vs/workbench/services/configuration/browser/configurationService.d.ts +3 -3
  8. package/vscode/src/vs/workbench/services/configuration/browser/configurationService.js +4 -4
  9. package/vscode/src/vs/workbench/services/configuration/common/configurationCache.d.ts +1 -1
  10. package/vscode/src/vs/workbench/services/configuration/common/configurationEditing.js +48 -48
  11. package/vscode/src/vs/workbench/services/configuration/common/configurationModels.d.ts +1 -1
  12. package/vscode/src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.d.ts +0 -1
  13. package/vscode/src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.js +14 -13
  14. package/vscode/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.d.ts +1 -1
  15. package/vscode/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.js +5 -5
  16. package/vscode/src/vs/workbench/services/workspaces/browser/workspacesService.d.ts +2 -2
  17. package/vscode/src/vs/workbench/services/workspaces/browser/workspacesService.js +1 -1
package/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscod
4
4
  import { ConfigurationScope, type IConfigurationDefaults, type IConfigurationNode, type IConfigurationRegistry } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry";
5
5
  import type { IFileWriteOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files";
6
6
  import type { IAnyWorkspaceIdentifier, IEmptyWorkspaceIdentifier, ISingleFolderWorkspaceIdentifier, IWorkspaceIdentifier } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
7
- import type { IStoredWorkspace, IWorkspaceFolderCreationData } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
7
+ import type { IStoredWorkspace, IWorkspaceFolderCreationData } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
8
8
  import type { IColorCustomizations, IThemeScopedColorCustomizations } from "@codingame/monaco-vscode-9d0168a3-519b-57f3-9bcc-89efc41f951a-common/vscode/vs/workbench/services/themes/common/workbenchThemeService";
9
9
  declare const defaultUserConfigurationFile: URI;
10
10
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-configuration-service-override",
3
- "version": "16.1.1",
3
+ "version": "17.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - configuration service-override",
6
6
  "keywords": [],
@@ -15,13 +15,14 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common": "16.1.1",
19
- "@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": "16.1.1",
20
- "@codingame/monaco-vscode-68b3311c-eb96-5711-8f72-f5f4b2e31932-common": "16.1.1",
21
- "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common": "16.1.1",
22
- "@codingame/monaco-vscode-api": "16.1.1",
23
- "@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common": "16.1.1",
24
- "@codingame/monaco-vscode-files-service-override": "16.1.1"
18
+ "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common": "17.1.0",
19
+ "@codingame/monaco-vscode-407531d3-fdae-5387-8c41-49ba0e9574b5-common": "17.1.0",
20
+ "@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common": "17.1.0",
21
+ "@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common": "17.1.0",
22
+ "@codingame/monaco-vscode-97284942-b044-5fbb-b53b-3f46d2468746-common": "17.1.0",
23
+ "@codingame/monaco-vscode-api": "17.1.0",
24
+ "@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common": "17.1.0",
25
+ "@codingame/monaco-vscode-files-service-override": "17.1.0"
25
26
  },
26
27
  "main": "index.js",
27
28
  "module": "index.js",
@@ -5,7 +5,7 @@ import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/regist
5
5
  import { ExtensionsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
6
6
  import { Extensions as Extensions$1, configurationDefaultsSchemaId, ConfigurationScope, OVERRIDE_PROPERTY_REGEX, validateProperty, parseScope, getAllConfigurationProperties, getDefaultValue } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
7
7
  import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
8
- import { mcpSchemaId, tasksSchemaId, launchSchemaId, workspaceSettingsSchemaId } from '@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration';
8
+ import { mcpSchemaId, tasksSchemaId, launchSchemaId, workspaceSettingsSchemaId } from '@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration';
9
9
  import { isObject, isUndefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
10
10
  import { ExtensionIdentifierMap } from '@codingame/monaco-vscode-api/vscode/vs/platform/extensions/common/extensions';
11
11
  import { Extensions as Extensions$2 } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensionManagement/common/extensionFeatures';
@@ -22,29 +22,29 @@ const configurationEntrySchema = {
22
22
  properties: {
23
23
  title: {
24
24
  description: ( localize(
25
- 2489,
25
+ 2507,
26
26
  'A title for the current category of settings. This label will be rendered in the Settings editor as a subheading. If the title is the same as the extension display name, then the category will be grouped under the main extension heading.'
27
27
  )),
28
28
  type: 'string'
29
29
  },
30
30
  order: {
31
31
  description: ( localize(
32
- 2490,
32
+ 2508,
33
33
  'When specified, gives the order of this category of settings relative to other categories.'
34
34
  )),
35
35
  type: 'integer'
36
36
  },
37
37
  properties: {
38
- description: ( localize(2491, 'Description of the configuration properties.')),
38
+ description: ( localize(2509, 'Description of the configuration properties.')),
39
39
  type: 'object',
40
40
  propertyNames: {
41
41
  pattern: '\\S+',
42
- patternErrorMessage: ( localize(2492, 'Property should not be empty.')),
42
+ patternErrorMessage: ( localize(2510, 'Property should not be empty.')),
43
43
  },
44
44
  additionalProperties: {
45
45
  anyOf: [
46
46
  {
47
- title: ( localize(2493, 'Schema of the configuration property.')),
47
+ title: ( localize(2511, 'Schema of the configuration property.')),
48
48
  $ref: 'http://json-schema.org/draft-07/schema#'
49
49
  },
50
50
  {
@@ -55,30 +55,30 @@ const configurationEntrySchema = {
55
55
  enum: ['application', 'machine', 'window', 'resource', 'language-overridable', 'machine-overridable'],
56
56
  default: 'window',
57
57
  enumDescriptions: [
58
- ( localize(2494, "Configuration that can be configured only in the user settings.")),
58
+ ( localize(2512, "Configuration that can be configured only in the user settings.")),
59
59
  ( localize(
60
- 2495,
60
+ 2513,
61
61
  "Configuration that can be configured only in the user settings or only in the remote settings."
62
62
  )),
63
63
  ( localize(
64
- 2496,
64
+ 2514,
65
65
  "Configuration that can be configured in the user, remote or workspace settings."
66
66
  )),
67
67
  ( localize(
68
- 2497,
68
+ 2515,
69
69
  "Configuration that can be configured in the user, remote, workspace or folder settings."
70
70
  )),
71
71
  ( localize(
72
- 2498,
72
+ 2516,
73
73
  "Resource configuration that can be configured in language specific settings."
74
74
  )),
75
75
  ( localize(
76
- 2499,
76
+ 2517,
77
77
  "Machine configuration that can be configured also in workspace or folder settings."
78
78
  ))
79
79
  ],
80
80
  markdownDescription: ( localize(
81
- 2500,
81
+ 2518,
82
82
  "Scope in which the configuration is applicable. Available scopes are `application`, `machine`, `window`, `resource`, and `machine-overridable`."
83
83
  ))
84
84
  },
@@ -87,14 +87,14 @@ const configurationEntrySchema = {
87
87
  items: {
88
88
  type: 'string',
89
89
  },
90
- description: ( localize(2501, 'Descriptions for enum values'))
90
+ description: ( localize(2519, 'Descriptions for enum values'))
91
91
  },
92
92
  markdownEnumDescriptions: {
93
93
  type: 'array',
94
94
  items: {
95
95
  type: 'string',
96
96
  },
97
- description: ( localize(2502, 'Descriptions for enum values in the markdown format.'))
97
+ description: ( localize(2520, 'Descriptions for enum values in the markdown format.'))
98
98
  },
99
99
  enumItemLabels: {
100
100
  type: 'array',
@@ -102,26 +102,26 @@ const configurationEntrySchema = {
102
102
  type: 'string'
103
103
  },
104
104
  markdownDescription: ( localize(
105
- 2503,
105
+ 2521,
106
106
  'Labels for enum values to be displayed in the Settings editor. When specified, the {0} values still show after the labels, but less prominently.',
107
107
  '`enum`'
108
108
  ))
109
109
  },
110
110
  markdownDescription: {
111
111
  type: 'string',
112
- description: ( localize(2504, 'The description in the markdown format.'))
112
+ description: ( localize(2522, 'The description in the markdown format.'))
113
113
  },
114
114
  deprecationMessage: {
115
115
  type: 'string',
116
116
  description: ( localize(
117
- 2505,
117
+ 2523,
118
118
  'If set, the property is marked as deprecated and the given message is shown as an explanation.'
119
119
  ))
120
120
  },
121
121
  markdownDeprecationMessage: {
122
122
  type: 'string',
123
123
  description: ( localize(
124
- 2506,
124
+ 2524,
125
125
  'If set, the property is marked as deprecated and the given message is shown as an explanation in the markdown format.'
126
126
  ))
127
127
  },
@@ -129,26 +129,26 @@ const configurationEntrySchema = {
129
129
  type: 'string',
130
130
  enum: ['singlelineText', 'multilineText'],
131
131
  enumDescriptions: [
132
- ( localize(2507, 'The value will be shown in an inputbox.')),
133
- ( localize(2508, 'The value will be shown in a textarea.'))
132
+ ( localize(2525, 'The value will be shown in an inputbox.')),
133
+ ( localize(2526, 'The value will be shown in a textarea.'))
134
134
  ],
135
135
  default: 'singlelineText',
136
136
  description: ( localize(
137
- 2509,
137
+ 2527,
138
138
  'When specified, controls the presentation format of the string setting.'
139
139
  ))
140
140
  },
141
141
  order: {
142
142
  type: 'integer',
143
143
  description: ( localize(
144
- 2510,
144
+ 2528,
145
145
  'When specified, gives the order of this setting relative to other settings within the same category. Settings with an order property will be placed before settings without this property set.'
146
146
  ))
147
147
  },
148
148
  ignoreSync: {
149
149
  type: 'boolean',
150
150
  description: ( localize(
151
- 2511,
151
+ 2529,
152
152
  'When enabled, Settings Sync will not sync the user value of this configuration by default.'
153
153
  ))
154
154
  },
@@ -158,7 +158,7 @@ const configurationEntrySchema = {
158
158
  type: 'string'
159
159
  },
160
160
  markdownDescription: ( localize(
161
- 2512,
161
+ 2530,
162
162
  'A list of categories under which to place the setting. The category can then be searched up in the Settings editor. For example, specifying the `experimental` tag allows one to find the setting by searching `@tag:experimental`.'
163
163
  )),
164
164
  }
@@ -203,7 +203,7 @@ defaultConfigurationExtPoint.setHandler((extensions, { added, removed }) => {
203
203
  const registeredPropertyScheme = registeredProperties[key];
204
204
  if (registeredPropertyScheme?.disallowConfigurationDefault) {
205
205
  extension.collector.warn(( localize(
206
- 2513,
206
+ 2531,
207
207
  "Cannot register configuration defaults for '{0}'. This setting does not allow contributing configuration defaults.",
208
208
  key
209
209
  )));
@@ -213,7 +213,7 @@ defaultConfigurationExtPoint.setHandler((extensions, { added, removed }) => {
213
213
  if (!OVERRIDE_PROPERTY_REGEX.test(key)) {
214
214
  if (registeredPropertyScheme?.scope && !allowedScopes.includes(registeredPropertyScheme.scope)) {
215
215
  extension.collector.warn(( localize(
216
- 2514,
216
+ 2532,
217
217
  "Cannot register configuration defaults for '{0}'. Only defaults for machine-overridable, window, resource and language overridable scoped settings are supported.",
218
218
  key
219
219
  )));
@@ -231,7 +231,7 @@ const configurationExtPoint = ExtensionsRegistry.registerExtensionPoint({
231
231
  extensionPoint: 'configuration',
232
232
  deps: [defaultConfigurationExtPoint],
233
233
  jsonSchema: {
234
- description: ( localize(2515, 'Contributes configuration settings.')),
234
+ description: ( localize(2533, 'Contributes configuration settings.')),
235
235
  oneOf: [
236
236
  configurationEntrySchema,
237
237
  {
@@ -257,7 +257,7 @@ configurationExtPoint.setHandler((extensions, { added, removed }) => {
257
257
  function handleConfiguration(node, extension) {
258
258
  const configuration = deepClone(node);
259
259
  if (configuration.title && (typeof configuration.title !== 'string')) {
260
- extension.collector.error(( localize(2516, "'configuration.title' must be a string")));
260
+ extension.collector.error(( localize(2534, "'configuration.title' must be a string")));
261
261
  }
262
262
  validateProperties(configuration, extension);
263
263
  configuration.id = node.id || extension.description.identifier.value;
@@ -271,7 +271,7 @@ configurationExtPoint.setHandler((extensions, { added, removed }) => {
271
271
  const extensionConfigurationPolicy = product.extensionConfigurationPolicy;
272
272
  if (properties) {
273
273
  if (typeof properties !== 'object') {
274
- extension.collector.error(( localize(2517, "'configuration.properties' must be an object")));
274
+ extension.collector.error(( localize(2535, "'configuration.properties' must be an object")));
275
275
  configuration.properties = {};
276
276
  }
277
277
  for (const key in properties) {
@@ -284,12 +284,12 @@ configurationExtPoint.setHandler((extensions, { added, removed }) => {
284
284
  }
285
285
  if (( seenProperties.has(key))) {
286
286
  delete properties[key];
287
- extension.collector.warn(( localize(2518, "Cannot register '{0}'. This property is already registered.", key)));
287
+ extension.collector.warn(( localize(2536, "Cannot register '{0}'. This property is already registered.", key)));
288
288
  continue;
289
289
  }
290
290
  if (!isObject(propertyConfiguration)) {
291
291
  delete properties[key];
292
- extension.collector.error(( localize(2519, "configuration.properties property '{0}' must be an object", key)));
292
+ extension.collector.error(( localize(2537, "configuration.properties property '{0}' must be an object", key)));
293
293
  continue;
294
294
  }
295
295
  if (extensionConfigurationPolicy?.[key]) {
@@ -302,7 +302,7 @@ configurationExtPoint.setHandler((extensions, { added, removed }) => {
302
302
  const subNodes = configuration.allOf;
303
303
  if (subNodes) {
304
304
  extension.collector.error(( localize(
305
- 2520,
305
+ 2538,
306
306
  "'configuration.allOf' is deprecated and should no longer be used. Instead, pass multiple configuration sections as an array to the 'configuration' contribution point."
307
307
  )));
308
308
  for (const node of subNodes) {
@@ -345,7 +345,7 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
345
345
  'folders': {
346
346
  minItems: 0,
347
347
  uniqueItems: true,
348
- description: ( localize(2521, "List of folders to be loaded in the workspace.")),
348
+ description: ( localize(2539, "List of folders to be loaded in the workspace.")),
349
349
  items: {
350
350
  type: 'object',
351
351
  defaultSnippets: [{ body: { path: '$1' } }],
@@ -354,13 +354,13 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
354
354
  path: {
355
355
  type: 'string',
356
356
  description: ( localize(
357
- 2522,
357
+ 2540,
358
358
  "A file path. e.g. `/root/folderA` or `./folderA` for a relative path that will be resolved against the location of the workspace file."
359
359
  ))
360
360
  },
361
361
  name: {
362
362
  type: 'string',
363
- description: ( localize(2523, "An optional name for the folder. "))
363
+ description: ( localize(2541, "An optional name for the folder. "))
364
364
  }
365
365
  },
366
366
  required: ['path']
@@ -368,11 +368,11 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
368
368
  properties: {
369
369
  uri: {
370
370
  type: 'string',
371
- description: ( localize(2524, "URI of the folder"))
371
+ description: ( localize(2542, "URI of the folder"))
372
372
  },
373
373
  name: {
374
374
  type: 'string',
375
- description: ( localize(2523, "An optional name for the folder. "))
375
+ description: ( localize(2541, "An optional name for the folder. "))
376
376
  }
377
377
  },
378
378
  required: ['uri']
@@ -382,19 +382,19 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
382
382
  'settings': {
383
383
  type: 'object',
384
384
  default: {},
385
- description: ( localize(2525, "Workspace settings")),
385
+ description: ( localize(2543, "Workspace settings")),
386
386
  $ref: workspaceSettingsSchemaId
387
387
  },
388
388
  'launch': {
389
389
  type: 'object',
390
390
  default: { configurations: [], compounds: [] },
391
- description: ( localize(2526, "Workspace launch configurations")),
391
+ description: ( localize(2544, "Workspace launch configurations")),
392
392
  $ref: launchSchemaId
393
393
  },
394
394
  'tasks': {
395
395
  type: 'object',
396
396
  default: { version: '2.0.0', tasks: [] },
397
- description: ( localize(2527, "Workspace task configurations")),
397
+ description: ( localize(2545, "Workspace task configurations")),
398
398
  $ref: tasksSchemaId
399
399
  },
400
400
  'mcp': {
@@ -403,32 +403,32 @@ jsonRegistry.registerSchema('vscode://schemas/workspaceConfig', {
403
403
  inputs: [],
404
404
  servers: {
405
405
  'mcp-server-time': {
406
- command: 'python',
407
- args: ['-m', 'mcp_server_time', '--local-timezone=America/Los_Angeles']
406
+ command: 'uvx',
407
+ args: ['mcp_server_time', '--local-timezone=America/Los_Angeles']
408
408
  }
409
409
  }
410
410
  },
411
- description: ( localize(2528, "Model Context Protocol server configurations")),
411
+ description: ( localize(2546, "Model Context Protocol server configurations")),
412
412
  $ref: mcpSchemaId
413
413
  },
414
414
  'extensions': {
415
415
  type: 'object',
416
416
  default: {},
417
- description: ( localize(2529, "Workspace extensions")),
417
+ description: ( localize(2547, "Workspace extensions")),
418
418
  $ref: 'vscode://schemas/extensions'
419
419
  },
420
420
  'remoteAuthority': {
421
421
  type: 'string',
422
422
  doNotSuggest: true,
423
- description: ( localize(2530, "The remote server where the workspace is located.")),
423
+ description: ( localize(2548, "The remote server where the workspace is located.")),
424
424
  },
425
425
  'transient': {
426
426
  type: 'boolean',
427
427
  doNotSuggest: true,
428
- description: ( localize(2531, "A transient workspace will disappear when restarting or reloading.")),
428
+ description: ( localize(2549, "A transient workspace will disappear when restarting or reloading.")),
429
429
  }
430
430
  },
431
- errorMessage: ( localize(2532, "Unknown workspace configuration property"))
431
+ errorMessage: ( localize(2550, "Unknown workspace configuration property"))
432
432
  });
433
433
  class SettingsTableRenderer extends Disposable {
434
434
  constructor() {
@@ -444,7 +444,7 @@ class SettingsTableRenderer extends Disposable {
444
444
  : [];
445
445
  const properties = getAllConfigurationProperties(configuration);
446
446
  const contrib = properties ? ( Object.keys(properties)) : [];
447
- const headers = [( localize(2533, "ID")), ( localize(2534, "Description")), ( localize(2535, "Default"))];
447
+ const headers = [( localize(2551, "ID")), ( localize(2552, "Description")), ( localize(2553, "Default"))];
448
448
  const rows = ( contrib.sort((a, b) => a.localeCompare(b))
449
449
  .map(key => {
450
450
  return [
@@ -464,7 +464,7 @@ class SettingsTableRenderer extends Disposable {
464
464
  }
465
465
  ( Registry.as(Extensions$2.ExtensionFeaturesRegistry)).registerExtensionFeature({
466
466
  id: 'configuration',
467
- label: ( localize(2536, "Settings")),
467
+ label: ( localize(2554, "Settings")),
468
468
  access: {
469
469
  canToggle: false
470
470
  },
@@ -15,11 +15,11 @@ import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/s
15
15
  import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
16
16
  import { StorageScope } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
17
17
  import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
18
- import { isVirtualWorkspace } from '@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspace/common/virtualWorkspace';
18
+ import { isVirtualWorkspace } from '@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspace/common/virtualWorkspace';
19
19
  import { registerAction2, Action2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
20
20
  import { ResourceContextKey, ActiveEditorContext, TemporaryWorkspaceContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
21
21
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
22
- import { TEXT_FILE_EDITOR_ID } from '@codingame/monaco-vscode-68b3311c-eb96-5711-8f72-f5f4b2e31932-common/vscode/vs/workbench/contrib/files/common/files';
22
+ import { TEXT_FILE_EDITOR_ID } from '@codingame/monaco-vscode-97284942-b044-5fbb-b53b-3f46d2468746-common/vscode/vs/workbench/contrib/files/common/files';
23
23
  import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
24
24
 
25
25
  let WorkspacesFinderContribution = class WorkspacesFinderContribution extends Disposable {
@@ -51,27 +51,27 @@ let WorkspacesFinderContribution = class WorkspacesFinderContribution extends Di
51
51
  if (workspaces.length === 1) {
52
52
  const workspaceFile = workspaces[0];
53
53
  this.notificationService.prompt(Severity.Info, ( localize(
54
- 11778,
54
+ 11907,
55
55
  "This folder contains a workspace file '{0}'. Do you want to open it? [Learn more]({1}) about workspace files.",
56
56
  workspaceFile,
57
57
  'https://go.microsoft.com/fwlink/?linkid=2025315'
58
58
  )), [{
59
- label: ( localize(11779, "Open Workspace")),
59
+ label: ( localize(11908, "Open Workspace")),
60
60
  run: () => this.hostService.openWindow([{ workspaceUri: joinPath(folder, workspaceFile) }])
61
61
  }], {
62
62
  neverShowAgain,
63
- priority: !this.storageService.isNew(StorageScope.WORKSPACE) ? NotificationPriority.SILENT : undefined
63
+ priority: !this.storageService.isNew(StorageScope.WORKSPACE) ? NotificationPriority.SILENT : NotificationPriority.OPTIONAL
64
64
  });
65
65
  }
66
66
  else if (workspaces.length > 1) {
67
67
  this.notificationService.prompt(Severity.Info, ( localize(
68
- 11780,
68
+ 11909,
69
69
  "This folder contains multiple workspace files. Do you want to open one? [Learn more]({0}) about workspace files.",
70
70
  'https://go.microsoft.com/fwlink/?linkid=2025315'
71
71
  )), [{
72
- label: ( localize(11781, "Select Workspace")),
72
+ label: ( localize(11910, "Select Workspace")),
73
73
  run: () => {
74
- this.quickInputService.pick(( workspaces.map(workspace => ({ label: workspace }))), { placeHolder: ( localize(11782, "Select a workspace to open")) }).then(pick => {
74
+ this.quickInputService.pick(( workspaces.map(workspace => ({ label: workspace }))), { placeHolder: ( localize(11911, "Select a workspace to open")) }).then(pick => {
75
75
  if (pick) {
76
76
  this.hostService.openWindow([{ workspaceUri: joinPath(folder, pick.label) }]);
77
77
  }
@@ -79,7 +79,7 @@ let WorkspacesFinderContribution = class WorkspacesFinderContribution extends Di
79
79
  }
80
80
  }], {
81
81
  neverShowAgain,
82
- priority: !this.storageService.isNew(StorageScope.WORKSPACE) ? NotificationPriority.SILENT : undefined
82
+ priority: !this.storageService.isNew(StorageScope.WORKSPACE) ? NotificationPriority.SILENT : NotificationPriority.OPTIONAL
83
83
  });
84
84
  }
85
85
  }
@@ -97,7 +97,7 @@ registerAction2(class extends Action2 {
97
97
  constructor() {
98
98
  super({
99
99
  id: 'workbench.action.openWorkspaceFromEditor',
100
- title: ( localize2(11779, "Open Workspace")),
100
+ title: ( localize2(11908, "Open Workspace")),
101
101
  f1: false,
102
102
  menu: {
103
103
  id: MenuId.EditorContent,
@@ -112,7 +112,7 @@ registerAction2(class extends Action2 {
112
112
  if (contextService.getWorkbenchState() === WorkbenchState.WORKSPACE) {
113
113
  const workspaceConfiguration = contextService.getWorkspace().configuration;
114
114
  if (workspaceConfiguration && isEqual(workspaceConfiguration, uri)) {
115
- notificationService.info(( localize(11783, "This workspace is already open.")));
115
+ notificationService.info(( localize(11912, "This workspace is already open.")));
116
116
  return;
117
117
  }
118
118
  }
@@ -3,14 +3,14 @@ import { Event, Emitter } from "@codingame/monaco-vscode-api/vscode/vs/base/comm
3
3
  import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
4
4
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
5
5
  import { ConfigurationModel, ConfigurationParseOptions, UserSettings } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationModels";
6
- import { IConfigurationCache } from "@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration";
7
- import { IStoredWorkspaceFolder } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
6
+ import { IConfigurationCache } from "@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration";
7
+ import { IStoredWorkspaceFolder } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
8
8
  import { WorkbenchState, IWorkspaceFolder, IWorkspaceIdentifier } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
9
9
  import { IRemoteAgentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/remote/common/remoteAgentService.service";
10
10
  import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
11
11
  import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
12
12
  import { IStringDictionary } from "@codingame/monaco-vscode-api/vscode/vs/base/common/collections";
13
- import { IBrowserWorkbenchEnvironmentService } from "@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common/vscode/vs/workbench/services/environment/browser/environmentService.service";
13
+ import { IBrowserWorkbenchEnvironmentService } from "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common/vscode/vs/workbench/services/environment/browser/environmentService.service";
14
14
  import { DefaultConfiguration as BaseDefaultConfiguration } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurations";
15
15
  import { IJSONEditingService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/configuration/common/jsonEditing.service";
16
16
  import { IUserDataProfilesService } from "@codingame/monaco-vscode-api/vscode/vs/platform/userDataProfile/common/userDataProfile.service";
@@ -6,7 +6,7 @@ import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/co
6
6
  import { FileOperationResult, FileChangeType, FileOperation, whenProviderRegistered } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
7
7
  import { UserSettings, ConfigurationModelParser, ConfigurationModel } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationModels';
8
8
  import { StandaloneConfigurationModelParser, WorkspaceConfigurationModelParser } from '../common/configurationModels.js';
9
- import { APPLICATION_SCOPES, APPLY_ALL_PROFILES_SETTING, TASKS_CONFIGURATION_KEY, REMOTE_MACHINE_SCOPES, WORKSPACE_SCOPES, FOLDER_SETTINGS_NAME, FOLDER_SCOPES, LAUNCH_CONFIGURATION_KEY, MCP_CONFIGURATION_KEY } from '@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration';
9
+ import { APPLICATION_SCOPES, APPLY_ALL_PROFILES_SETTING, TASKS_CONFIGURATION_KEY, REMOTE_MACHINE_SCOPES, WORKSPACE_SCOPES, FOLDER_SETTINGS_NAME, FOLDER_SCOPES, LAUNCH_CONFIGURATION_KEY, MCP_CONFIGURATION_KEY } from '@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration';
10
10
  import { WorkbenchState } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
11
11
  import { Extensions, OVERRIDE_PROPERTY_REGEX } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
12
12
  import { equals } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
@@ -5,9 +5,9 @@ import { Workspace as BaseWorkspace, WorkbenchState, IWorkspaceFolder, IWorkspac
5
5
  import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
6
6
  import { ConfigurationModel } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationModels";
7
7
  import { IConfigurationChangeEvent, ConfigurationTarget, IConfigurationOverrides, IConfigurationData, IConfigurationValue, IConfigurationUpdateOverrides, IConfigurationUpdateOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration";
8
- import { IConfigurationCache, RestrictedSettings } from "@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration";
8
+ import { IConfigurationCache, RestrictedSettings } from "@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration";
9
9
  import { IWorkbenchConfigurationService } from "@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common/vscode/vs/workbench/services/configuration/common/configuration.service";
10
- import { IWorkspaceFolderCreationData } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
10
+ import { IWorkspaceFolderCreationData } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
11
11
  import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
12
12
  import { IRemoteAgentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/remote/common/remoteAgentService.service";
13
13
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
@@ -16,7 +16,7 @@ import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/plat
16
16
  import { IUserDataProfileService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service";
17
17
  import { IPolicyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/policy/common/policy.service";
18
18
  import { IUserDataProfilesService } from "@codingame/monaco-vscode-api/vscode/vs/platform/userDataProfile/common/userDataProfile.service";
19
- import { IBrowserWorkbenchEnvironmentService } from "@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common/vscode/vs/workbench/services/environment/browser/environmentService.service";
19
+ import { IBrowserWorkbenchEnvironmentService } from "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common/vscode/vs/workbench/services/environment/browser/environmentService.service";
20
20
  declare class Workspace extends BaseWorkspace {
21
21
  initialized: boolean;
22
22
  }
@@ -14,10 +14,10 @@ import { isConfigurationOverrides, isConfigurationUpdateOverrides, Configuration
14
14
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
15
15
  import { NullPolicyConfiguration, PolicyConfiguration } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurations';
16
16
  import { Configuration } from '../common/configurationModels.js';
17
- import { LOCAL_MACHINE_SCOPES, LOCAL_MACHINE_PROFILE_SCOPES, PROFILE_SCOPES, APPLICATION_SCOPES, APPLY_ALL_PROFILES_SETTING, FOLDER_CONFIG_FOLDER_NAME, defaultSettingsSchemaId, userSettingsSchemaId, profileSettingsSchemaId, machineSettingsSchemaId, workspaceSettingsSchemaId, folderSettingsSchemaId } from '@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration';
17
+ import { LOCAL_MACHINE_SCOPES, LOCAL_MACHINE_PROFILE_SCOPES, PROFILE_SCOPES, APPLICATION_SCOPES, APPLY_ALL_PROFILES_SETTING, FOLDER_CONFIG_FOLDER_NAME, defaultSettingsSchemaId, userSettingsSchemaId, profileSettingsSchemaId, machineSettingsSchemaId, workspaceSettingsSchemaId, folderSettingsSchemaId } from '@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration';
18
18
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
19
19
  import { Extensions, keyFromOverrideIdentifiers, ConfigurationScope, allSettings, applicationSettings, windowSettings, resourceSettings, machineSettings, machineOverridableSettings, applicationMachineSettings, OVERRIDE_PROPERTY_PATTERN, resourceLanguageSettingsSchemaId, configurationDefaultsSchemaId } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
20
- import { isStoredWorkspaceFolder, toWorkspaceFolders, getStoredWorkspaceFolder } from '@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces';
20
+ import { isStoredWorkspaceFolder, toWorkspaceFolders, getStoredWorkspaceFolder } from '@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces';
21
21
  import { EditableConfigurationTarget, ConfigurationEditing } from '../common/configurationEditing.js';
22
22
  import { DefaultConfiguration, UserConfiguration, RemoteUserConfiguration, WorkspaceConfiguration, ApplicationConfiguration, FolderConfiguration } from './configuration.js';
23
23
  import { mark } from '@codingame/monaco-vscode-api/vscode/vs/base/common/performance';
@@ -1094,7 +1094,7 @@ let RegisterConfigurationSchemasContribution = class RegisterConfigurationSchema
1094
1094
  } : workspaceSettingsSchema;
1095
1095
  const configDefaultsSchema = {
1096
1096
  type: 'object',
1097
- description: ( localize(11927, 'Contribute defaults for configurations')),
1097
+ description: ( localize(12056, 'Contribute defaults for configurations')),
1098
1098
  properties: Object.assign({}, this.filterDefaultOverridableProperties(machineOverridableSettings.properties), this.filterDefaultOverridableProperties(windowSettings.properties), this.filterDefaultOverridableProperties(resourceSettings.properties)),
1099
1099
  patternProperties: {
1100
1100
  [OVERRIDE_PROPERTY_PATTERN]: {
@@ -1215,7 +1215,7 @@ configurationRegistry.registerConfiguration({
1215
1215
  properties: {
1216
1216
  [APPLY_ALL_PROFILES_SETTING]: {
1217
1217
  'type': 'array',
1218
- description: ( localize(11928, "Configure settings to be applied for all profiles.")),
1218
+ description: ( localize(12057, "Configure settings to be applied for all profiles.")),
1219
1219
  'default': [],
1220
1220
  'scope': ConfigurationScope.APPLICATION,
1221
1221
  additionalProperties: true,
@@ -1,4 +1,4 @@
1
- import { IConfigurationCache, ConfigurationKey } from "@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration";
1
+ import { IConfigurationCache, ConfigurationKey } from "@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration";
2
2
  import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
3
3
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
4
4
  import { IEnvironmentService } from "@codingame/monaco-vscode-api/vscode/vs/platform/environment/common/environment.service";
@@ -2,13 +2,13 @@
2
2
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
3
  import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
4
  import { parse } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
5
- import { setProperty } from '@codingame/monaco-vscode-68b3311c-eb96-5711-8f72-f5f4b2e31932-common/vscode/vs/base/common/jsonEdit';
5
+ import { setProperty } from '@codingame/monaco-vscode-407531d3-fdae-5387-8c41-49ba0e9574b5-common/vscode/vs/base/common/jsonEdit';
6
6
  import { Queue } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
7
7
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
8
8
  import { WorkbenchState } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
9
9
  import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
10
10
  import { ITextFileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service';
11
- import { TASKS_CONFIGURATION_KEY, LAUNCH_CONFIGURATION_KEY, MCP_CONFIGURATION_KEY, TASKS_DEFAULT, APPLICATION_SCOPES, FOLDER_SCOPES, USER_STANDALONE_CONFIGURATIONS, WORKSPACE_STANDALONE_CONFIGURATIONS, FOLDER_SETTINGS_PATH } from '@codingame/monaco-vscode-2b1a9082-790f-527f-b013-d1b29d6265a3-common/vscode/vs/workbench/services/configuration/common/configuration';
11
+ import { TASKS_CONFIGURATION_KEY, LAUNCH_CONFIGURATION_KEY, MCP_CONFIGURATION_KEY, TASKS_DEFAULT, APPLICATION_SCOPES, FOLDER_SCOPES, USER_STANDALONE_CONFIGURATIONS, WORKSPACE_STANDALONE_CONFIGURATIONS, FOLDER_SETTINGS_PATH } from '@codingame/monaco-vscode-4a0e04a7-c3bd-5fb7-9d3b-4fd047cc9e59-common/vscode/vs/workbench/services/configuration/common/configuration';
12
12
  import { IWorkbenchConfigurationService } from '@codingame/monaco-vscode-422642f2-7e3a-5c1c-9e1e-1d3ef1817346-common/vscode/vs/workbench/services/configuration/common/configuration.service';
13
13
  import { FileOperationResult } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
14
14
  import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
@@ -138,7 +138,7 @@ let ConfigurationEditing = class ConfigurationEditing {
138
138
  throw this.toConfigurationEditingError(ConfigurationEditingErrorCode.ERROR_CONFIGURATION_FILE_MODIFIED_SINCE, operation.target, operation);
139
139
  }
140
140
  throw ( new ConfigurationEditingError(( localize(
141
- 11929,
141
+ 12058,
142
142
  "Error while writing to {0}. {1}",
143
143
  this.stringifyTarget(operation.target),
144
144
  error.message
@@ -198,9 +198,9 @@ let ConfigurationEditing = class ConfigurationEditing {
198
198
  }
199
199
  }
200
200
  onInvalidConfigurationError(error, operation) {
201
- const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(11930, "Open Tasks Configuration"))
202
- : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(11931, "Open Launch Configuration"))
203
- : operation.workspaceStandAloneConfigurationKey === MCP_CONFIGURATION_KEY ? ( localize(11932, "Open MCP Configuration"))
201
+ const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(12059, "Open Tasks Configuration"))
202
+ : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(12060, "Open Launch Configuration"))
203
+ : operation.workspaceStandAloneConfigurationKey === MCP_CONFIGURATION_KEY ? ( localize(12061, "Open MCP Configuration"))
204
204
  : null;
205
205
  if (openStandAloneConfigurationActionLabel) {
206
206
  this.notificationService.prompt(Severity.Error, error.message, [{
@@ -210,18 +210,18 @@ let ConfigurationEditing = class ConfigurationEditing {
210
210
  }
211
211
  else {
212
212
  this.notificationService.prompt(Severity.Error, error.message, [{
213
- label: ( localize(11933, "Open Settings")),
213
+ label: ( localize(12062, "Open Settings")),
214
214
  run: () => this.openSettings(operation)
215
215
  }]);
216
216
  }
217
217
  }
218
218
  onConfigurationFileDirtyError(error, operation, scopes) {
219
- const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(11930, "Open Tasks Configuration"))
220
- : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(11931, "Open Launch Configuration"))
219
+ const openStandAloneConfigurationActionLabel = operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY ? ( localize(12059, "Open Tasks Configuration"))
220
+ : operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY ? ( localize(12060, "Open Launch Configuration"))
221
221
  : null;
222
222
  if (openStandAloneConfigurationActionLabel) {
223
223
  this.notificationService.prompt(Severity.Error, error.message, [{
224
- label: ( localize(11934, "Save and Retry")),
224
+ label: ( localize(12063, "Save and Retry")),
225
225
  run: () => {
226
226
  const key = operation.key ? `${operation.workspaceStandAloneConfigurationKey}.${operation.key}` : operation.workspaceStandAloneConfigurationKey;
227
227
  this.writeConfiguration(operation.target, { key, value: operation.value }, { handleDirtyFile: 'save', scopes });
@@ -234,11 +234,11 @@ let ConfigurationEditing = class ConfigurationEditing {
234
234
  }
235
235
  else {
236
236
  this.notificationService.prompt(Severity.Error, error.message, [{
237
- label: ( localize(11934, "Save and Retry")),
237
+ label: ( localize(12063, "Save and Retry")),
238
238
  run: () => this.writeConfiguration(operation.target, { key: operation.key, value: operation.value }, { handleDirtyFile: 'save', scopes })
239
239
  },
240
240
  {
241
- label: ( localize(11933, "Open Settings")),
241
+ label: ( localize(12062, "Open Settings")),
242
242
  run: () => this.openSettings(operation)
243
243
  }]);
244
244
  }
@@ -275,88 +275,88 @@ let ConfigurationEditing = class ConfigurationEditing {
275
275
  toErrorMessage(error, target, operation) {
276
276
  switch (error) {
277
277
  case ConfigurationEditingErrorCode.ERROR_POLICY_CONFIGURATION: return localize(
278
- 11935,
278
+ 12064,
279
279
  "Unable to write {0} because it is configured in system policy.",
280
280
  operation.key
281
281
  );
282
282
  case ConfigurationEditingErrorCode.ERROR_UNKNOWN_KEY: return localize(
283
- 11936,
283
+ 12065,
284
284
  "Unable to write to {0} because {1} is not a registered configuration.",
285
285
  this.stringifyTarget(target),
286
286
  operation.key
287
287
  );
288
288
  case ConfigurationEditingErrorCode.ERROR_INVALID_WORKSPACE_CONFIGURATION_APPLICATION: return localize(
289
- 11937,
289
+ 12066,
290
290
  "Unable to write {0} to Workspace Settings. This setting can be written only into User settings.",
291
291
  operation.key
292
292
  );
293
293
  case ConfigurationEditingErrorCode.ERROR_INVALID_WORKSPACE_CONFIGURATION_MACHINE: return localize(
294
- 11938,
294
+ 12067,
295
295
  "Unable to write {0} to Workspace Settings. This setting can be written only into User settings.",
296
296
  operation.key
297
297
  );
298
298
  case ConfigurationEditingErrorCode.ERROR_INVALID_FOLDER_CONFIGURATION: return localize(
299
- 11939,
299
+ 12068,
300
300
  "Unable to write to Folder Settings because {0} does not support the folder resource scope.",
301
301
  operation.key
302
302
  );
303
303
  case ConfigurationEditingErrorCode.ERROR_INVALID_USER_TARGET: return localize(
304
- 11940,
304
+ 12069,
305
305
  "Unable to write to User Settings because {0} does not support for global scope.",
306
306
  operation.key
307
307
  );
308
308
  case ConfigurationEditingErrorCode.ERROR_INVALID_WORKSPACE_TARGET: return localize(
309
- 11941,
309
+ 12070,
310
310
  "Unable to write to Workspace Settings because {0} does not support for workspace scope in a multi folder workspace.",
311
311
  operation.key
312
312
  );
313
313
  case ConfigurationEditingErrorCode.ERROR_INVALID_FOLDER_TARGET: return localize(
314
- 11942,
314
+ 12071,
315
315
  "Unable to write to Folder Settings because no resource is provided."
316
316
  );
317
317
  case ConfigurationEditingErrorCode.ERROR_INVALID_RESOURCE_LANGUAGE_CONFIGURATION: return localize(
318
- 11943,
318
+ 12072,
319
319
  "Unable to write to Language Settings because {0} is not a resource language setting.",
320
320
  operation.key
321
321
  );
322
322
  case ConfigurationEditingErrorCode.ERROR_NO_WORKSPACE_OPENED: return localize(
323
- 11944,
323
+ 12073,
324
324
  "Unable to write to {0} because no workspace is opened. Please open a workspace first and try again.",
325
325
  this.stringifyTarget(target)
326
326
  );
327
327
  case ConfigurationEditingErrorCode.ERROR_INVALID_CONFIGURATION: {
328
328
  if (operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY) {
329
329
  return localize(
330
- 11945,
330
+ 12074,
331
331
  "Unable to write into the tasks configuration file. Please open it to correct errors/warnings in it and try again."
332
332
  );
333
333
  }
334
334
  if (operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY) {
335
335
  return localize(
336
- 11946,
336
+ 12075,
337
337
  "Unable to write into the launch configuration file. Please open it to correct errors/warnings in it and try again."
338
338
  );
339
339
  }
340
340
  if (operation.workspaceStandAloneConfigurationKey === MCP_CONFIGURATION_KEY) {
341
341
  return localize(
342
- 11947,
342
+ 12076,
343
343
  "Unable to write into the MCP configuration file. Please open it to correct errors/warnings in it and try again."
344
344
  );
345
345
  }
346
346
  switch (target) {
347
347
  case EditableConfigurationTarget.USER_LOCAL:
348
348
  return localize(
349
- 11948,
349
+ 12077,
350
350
  "Unable to write into user settings. Please open the user settings to correct errors/warnings in it and try again."
351
351
  );
352
352
  case EditableConfigurationTarget.USER_REMOTE:
353
353
  return localize(
354
- 11949,
354
+ 12078,
355
355
  "Unable to write into remote user settings. Please open the remote user settings to correct errors/warnings in it and try again."
356
356
  );
357
357
  case EditableConfigurationTarget.WORKSPACE:
358
358
  return localize(
359
- 11950,
359
+ 12079,
360
360
  "Unable to write into workspace settings. Please open the workspace settings to correct errors/warnings in the file and try again."
361
361
  );
362
362
  case EditableConfigurationTarget.WORKSPACE_FOLDER: {
@@ -368,7 +368,7 @@ let ConfigurationEditing = class ConfigurationEditing {
368
368
  }
369
369
  }
370
370
  return localize(
371
- 11951,
371
+ 12080,
372
372
  "Unable to write into folder settings. Please open the '{0}' folder settings to correct errors/warnings in it and try again.",
373
373
  workspaceFolderName
374
374
  );
@@ -380,36 +380,36 @@ let ConfigurationEditing = class ConfigurationEditing {
380
380
  case ConfigurationEditingErrorCode.ERROR_CONFIGURATION_FILE_DIRTY: {
381
381
  if (operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY) {
382
382
  return localize(
383
- 11952,
383
+ 12081,
384
384
  "Unable to write into tasks configuration file because the file has unsaved changes. Please save it first and then try again."
385
385
  );
386
386
  }
387
387
  if (operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY) {
388
388
  return localize(
389
- 11953,
389
+ 12082,
390
390
  "Unable to write into launch configuration file because the file has unsaved changes. Please save it first and then try again."
391
391
  );
392
392
  }
393
393
  if (operation.workspaceStandAloneConfigurationKey === MCP_CONFIGURATION_KEY) {
394
394
  return localize(
395
- 11954,
395
+ 12083,
396
396
  "Unable to write into MCP configuration file because the file has unsaved changes. Please save it first and then try again."
397
397
  );
398
398
  }
399
399
  switch (target) {
400
400
  case EditableConfigurationTarget.USER_LOCAL:
401
401
  return localize(
402
- 11955,
402
+ 12084,
403
403
  "Unable to write into user settings because the file has unsaved changes. Please save the user settings file first and then try again."
404
404
  );
405
405
  case EditableConfigurationTarget.USER_REMOTE:
406
406
  return localize(
407
- 11956,
407
+ 12085,
408
408
  "Unable to write into remote user settings because the file has unsaved changes. Please save the remote user settings file first and then try again."
409
409
  );
410
410
  case EditableConfigurationTarget.WORKSPACE:
411
411
  return localize(
412
- 11957,
412
+ 12086,
413
413
  "Unable to write into workspace settings because the file has unsaved changes. Please save the workspace settings file first and then try again."
414
414
  );
415
415
  case EditableConfigurationTarget.WORKSPACE_FOLDER: {
@@ -421,7 +421,7 @@ let ConfigurationEditing = class ConfigurationEditing {
421
421
  }
422
422
  }
423
423
  return localize(
424
- 11958,
424
+ 12087,
425
425
  "Unable to write into folder settings because the file has unsaved changes. Please save the '{0}' folder settings file first and then try again.",
426
426
  workspaceFolderName
427
427
  );
@@ -433,46 +433,46 @@ let ConfigurationEditing = class ConfigurationEditing {
433
433
  case ConfigurationEditingErrorCode.ERROR_CONFIGURATION_FILE_MODIFIED_SINCE:
434
434
  if (operation.workspaceStandAloneConfigurationKey === TASKS_CONFIGURATION_KEY) {
435
435
  return localize(
436
- 11959,
436
+ 12088,
437
437
  "Unable to write into tasks configuration file because the content of the file is newer."
438
438
  );
439
439
  }
440
440
  if (operation.workspaceStandAloneConfigurationKey === LAUNCH_CONFIGURATION_KEY) {
441
441
  return localize(
442
- 11960,
442
+ 12089,
443
443
  "Unable to write into launch configuration file because the content of the file is newer."
444
444
  );
445
445
  }
446
446
  if (operation.workspaceStandAloneConfigurationKey === MCP_CONFIGURATION_KEY) {
447
447
  return localize(
448
- 11961,
448
+ 12090,
449
449
  "Unable to write into MCP configuration file because the content of the file is newer."
450
450
  );
451
451
  }
452
452
  switch (target) {
453
453
  case EditableConfigurationTarget.USER_LOCAL:
454
454
  return localize(
455
- 11962,
455
+ 12091,
456
456
  "Unable to write into user settings because the content of the file is newer."
457
457
  );
458
458
  case EditableConfigurationTarget.USER_REMOTE:
459
459
  return localize(
460
- 11963,
460
+ 12092,
461
461
  "Unable to write into remote user settings because the content of the file is newer."
462
462
  );
463
463
  case EditableConfigurationTarget.WORKSPACE:
464
464
  return localize(
465
- 11964,
465
+ 12093,
466
466
  "Unable to write into workspace settings because the content of the file is newer."
467
467
  );
468
468
  case EditableConfigurationTarget.WORKSPACE_FOLDER:
469
469
  return localize(
470
- 11965,
470
+ 12094,
471
471
  "Unable to write into folder settings because the content of the file is newer."
472
472
  );
473
473
  }
474
474
  case ConfigurationEditingErrorCode.ERROR_INTERNAL: return localize(
475
- 11966,
475
+ 12095,
476
476
  "Unable to write to {0} because of an internal error.",
477
477
  this.stringifyTarget(target)
478
478
  );
@@ -481,13 +481,13 @@ let ConfigurationEditing = class ConfigurationEditing {
481
481
  stringifyTarget(target) {
482
482
  switch (target) {
483
483
  case EditableConfigurationTarget.USER_LOCAL:
484
- return localize(11967, "User Settings");
484
+ return localize(12096, "User Settings");
485
485
  case EditableConfigurationTarget.USER_REMOTE:
486
- return localize(11968, "Remote User Settings");
486
+ return localize(12097, "Remote User Settings");
487
487
  case EditableConfigurationTarget.WORKSPACE:
488
- return localize(11969, "Workspace Settings");
488
+ return localize(12098, "Workspace Settings");
489
489
  case EditableConfigurationTarget.WORKSPACE_FOLDER:
490
- return localize(11970, "Folder Settings");
490
+ return localize(12099, "Folder Settings");
491
491
  default:
492
492
  return '';
493
493
  }
@@ -1,6 +1,6 @@
1
1
  import { IConfigurationModel, IConfigurationOverrides, IConfigurationValue, IConfigurationChange } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration";
2
2
  import { Configuration as BaseConfiguration, ConfigurationModelParser, ConfigurationModel, ConfigurationParseOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationModels";
3
- import { IStoredWorkspaceFolder } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
3
+ import { IStoredWorkspaceFolder } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
4
4
  import { Workspace } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
5
5
  import { ResourceMap } from "@codingame/monaco-vscode-api/vscode/vs/base/common/map";
6
6
  import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
@@ -15,7 +15,6 @@ import { AbstractVariableResolverService } from "@codingame/monaco-vscode-api/vs
15
15
  export declare abstract class BaseConfigurationResolverService extends AbstractVariableResolverService {
16
16
  private readonly configurationService;
17
17
  private readonly commandService;
18
- private readonly workspaceContextService;
19
18
  private readonly quickInputService;
20
19
  private readonly labelService;
21
20
  private readonly pathService;
@@ -8,7 +8,6 @@ import { isCodeEditor, isDiffEditor } from '@codingame/monaco-vscode-api/vscode/
8
8
  import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
9
9
  import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
10
10
  import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
11
- import { WorkbenchState } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
12
11
  import { EditorResourceAccessor, SideBySideEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
13
12
  import { VariableError, VariableKind } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/configurationResolver/common/configurationResolver';
14
13
  import { ConfigurationResolverExpression } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/configurationResolver/common/configurationResolverExpression';
@@ -106,7 +105,6 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
106
105
  }, labelService, pathService.userHome().then(home => home.path), envVariablesPromise);
107
106
  this.configurationService = configurationService;
108
107
  this.commandService = commandService;
109
- this.workspaceContextService = workspaceContextService;
110
108
  this.quickInputService = quickInputService;
111
109
  this.labelService = labelService;
112
110
  this.pathService = pathService;
@@ -116,7 +114,6 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
116
114
  this.resolvableVariables.add('input');
117
115
  }
118
116
  async resolveWithInteractionReplace(folder, config, section, variables, target) {
119
- config = await this.resolveAsync(folder, config);
120
117
  const parsed = ConfigurationResolverExpression.parse(config);
121
118
  await this.resolveWithInteraction(folder, parsed, section, variables, target);
122
119
  return parsed.toObject();
@@ -131,7 +128,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
131
128
  if (!isUndefinedOrNull(value)) {
132
129
  if (typeof value !== 'string') {
133
130
  throw ( new VariableError(VariableKind.Command, ( localize(
134
- 11972,
131
+ 12101,
135
132
  "Cannot substitute command variable '{0}' because command did not return a result of type string.",
136
133
  commandId
137
134
  ))));
@@ -146,7 +143,11 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
146
143
  result = { value: await this._contributedVariables.get(variable.inner)() };
147
144
  }
148
145
  else {
149
- continue;
146
+ const resolvedValue = await this.evaluateSingleVariable(variable, folder?.uri);
147
+ if (resolvedValue === undefined) {
148
+ continue;
149
+ }
150
+ result = typeof resolvedValue === 'string' ? { value: resolvedValue } : resolvedValue;
150
151
  }
151
152
  if (result === undefined) {
152
153
  return undefined;
@@ -156,7 +157,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
156
157
  return ( new Map(( Iterable.map(expr.resolved(), ([key, value]) => [key.inner, value.value]))));
157
158
  }
158
159
  async resolveInputs(folder, section, target) {
159
- if (this.workspaceContextService.getWorkbenchState() === WorkbenchState.EMPTY || !section) {
160
+ if (!section) {
160
161
  return undefined;
161
162
  }
162
163
  let inputs;
@@ -212,7 +213,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
212
213
  async showUserInput(section, variable, inputInfos, variableToCommandMap) {
213
214
  if (!inputInfos) {
214
215
  throw ( new VariableError(VariableKind.Input, ( localize(
215
- 11973,
216
+ 12102,
216
217
  "Variable '{0}' must be defined in an '{1}' section of the debug or task configuration.",
217
218
  variable,
218
219
  'inputs'
@@ -222,7 +223,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
222
223
  if (info) {
223
224
  const missingAttribute = (attrName) => {
224
225
  throw ( new VariableError(VariableKind.Input, ( localize(
225
- 11974,
226
+ 12103,
226
227
  "Input variable '{0}' is of type '{1}' and must include '{2}'.",
227
228
  variable,
228
229
  info.type,
@@ -245,7 +246,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
245
246
  if (typeof resolvedInput === 'string') {
246
247
  this.storeInputLru(defaultValueMap.set(defaultValueKey, resolvedInput));
247
248
  }
248
- return resolvedInput ? { value: resolvedInput, input: info } : undefined;
249
+ return resolvedInput !== undefined ? { value: resolvedInput, input: info } : undefined;
249
250
  });
250
251
  }
251
252
  case 'pickString': {
@@ -272,7 +273,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
272
273
  };
273
274
  const topValue = variableToCommandMap?.[`input:${variable}`] ?? previousPickedValue ?? info.default;
274
275
  if (value === info.default) {
275
- item.description = ( localize(11975, "(Default)"));
276
+ item.description = ( localize(12104, "(Default)"));
276
277
  picks.unshift(item);
277
278
  }
278
279
  else if (value === topValue) {
@@ -301,7 +302,7 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
301
302
  return { value: result, input: info };
302
303
  }
303
304
  throw ( new VariableError(VariableKind.Input, ( localize(
304
- 11976,
305
+ 12105,
305
306
  "Cannot substitute input variable '{0}' because command '{1}' did not return a result of type string.",
306
307
  variable,
307
308
  info.command
@@ -310,14 +311,14 @@ class BaseConfigurationResolverService extends AbstractVariableResolverService {
310
311
  }
311
312
  default:
312
313
  throw ( new VariableError(VariableKind.Input, ( localize(
313
- 11977,
314
+ 12106,
314
315
  "Input variable '{0}' can only be of type 'promptString', 'pickString', or 'command'.",
315
316
  variable
316
317
  ))));
317
318
  }
318
319
  }
319
320
  throw ( new VariableError(VariableKind.Input, ( localize(
320
- 11978,
321
+ 12107,
321
322
  "Undefined input variable '{0}' encountered. Remove or define '{0}' to continue.",
322
323
  variable
323
324
  ))));
@@ -2,7 +2,7 @@ import { IWorkspaceEditingService } from "@codingame/monaco-vscode-api/vscode/vs
2
2
  import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
3
3
  import { IWorkspaceIdentifier } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
4
4
  import { IJSONEditingService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/configuration/common/jsonEditing.service";
5
- import { IWorkspaceFolderCreationData, IEnterWorkspaceResult } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
5
+ import { IWorkspaceFolderCreationData, IEnterWorkspaceResult } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
6
6
  import { IWorkspacesService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspaces/common/workspaces.service";
7
7
  import { WorkspaceService } from "../../configuration/browser/configurationService.js";
8
8
  import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
@@ -5,7 +5,7 @@ import { WORKSPACE_FILTER, hasWorkspaceFileExtension, WORKSPACE_EXTENSION, isSav
5
5
  import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
6
6
  import { JSONEditingErrorCode } from '@codingame/monaco-vscode-d987325e-3e05-53aa-b9ff-6f97476f64db-common/vscode/vs/workbench/services/configuration/common/jsonEditing';
7
7
  import { IJSONEditingService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/configuration/common/jsonEditing.service';
8
- import { rewriteWorkspaceFileForNewLocation } from '@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces';
8
+ import { rewriteWorkspaceFileForNewLocation } from '@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces';
9
9
  import { IWorkspacesService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspaces/common/workspaces.service';
10
10
  import { ConfigurationScope, Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
11
11
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
@@ -55,8 +55,8 @@ let AbstractWorkspaceEditingService = class AbstractWorkspaceEditingService exte
55
55
  availableFileSystems.unshift(Schemas.vscodeRemote);
56
56
  }
57
57
  let workspacePath = await this.fileDialogService.showSaveDialog({
58
- saveLabel: ( localize(12815, "Save")),
59
- title: ( localize(12816, "Save Workspace")),
58
+ saveLabel: ( localize(12946, "Save")),
59
+ title: ( localize(12947, "Save Workspace")),
60
60
  filters: WORKSPACE_FILTER,
61
61
  defaultUri: joinPath(await this.fileDialogService.defaultWorkspacePath(), this.getNewWorkspaceName()),
62
62
  availableFileSystems
@@ -255,14 +255,14 @@ let AbstractWorkspaceEditingService = class AbstractWorkspaceEditingService exte
255
255
  }
256
256
  onInvalidWorkspaceConfigurationFileError() {
257
257
  const message = ( localize(
258
- 12817,
258
+ 12948,
259
259
  "Unable to write into workspace configuration file. Please open the file to correct errors/warnings in it and try again."
260
260
  ));
261
261
  this.askToOpenWorkspaceConfigurationFile(message);
262
262
  }
263
263
  askToOpenWorkspaceConfigurationFile(message) {
264
264
  this.notificationService.prompt(Severity.Error, message, [{
265
- label: ( localize(12818, "Open Workspace Configuration")),
265
+ label: ( localize(12949, "Open Workspace Configuration")),
266
266
  run: () => this.commandService.executeCommand('workbench.action.openWorkspaceConfigFile')
267
267
  }]);
268
268
  }
@@ -1,4 +1,4 @@
1
- import { IWorkspaceFolderCreationData, IEnterWorkspaceResult, IRecentlyOpened, IRecent } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces";
1
+ import { IWorkspaceFolderCreationData, IEnterWorkspaceResult, IRecentlyOpened, IRecent } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces";
2
2
  import { IWorkspacesService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspaces/common/workspaces.service";
3
3
  import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
4
4
  import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
@@ -9,7 +9,7 @@ import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/l
9
9
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
10
10
  import { IWorkbenchEnvironmentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/common/environmentService.service";
11
11
  import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
12
- import { IWorkspaceBackupInfo, IFolderBackupInfo } from "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/backup/common/backup";
12
+ import { IWorkspaceBackupInfo, IFolderBackupInfo } from "@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/backup/common/backup";
13
13
  export declare class BrowserWorkspacesService extends Disposable implements IWorkspacesService {
14
14
  private readonly storageService;
15
15
  private readonly contextService;
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
3
  import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/extensions';
4
- import { restoreRecentlyOpened, isRecentFolder, isRecentWorkspace, isRecentFile, toStoreData, getStoredWorkspaceFolder } from '@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common/vscode/vs/platform/workspaces/common/workspaces';
4
+ import { restoreRecentlyOpened, isRecentFolder, isRecentWorkspace, isRecentFile, toStoreData, getStoredWorkspaceFolder } from '@codingame/monaco-vscode-2cbab29e-9393-5de6-b701-9a9555360b6b-common/vscode/vs/platform/workspaces/common/workspaces';
5
5
  import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
6
6
  import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
7
7
  import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';