@codingame/monaco-vscode-explorer-service-override 6.0.2 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-explorer-service-override",
3
- "version": "6.0.2",
3
+ "version": "7.0.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@6.0.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@7.0.0"
30
30
  }
31
31
  }
@@ -20,14 +20,14 @@ const configurationRegistry = ( (Registry.as(Extensions.Configuration)));
20
20
  configurationRegistry.registerConfiguration({
21
21
  'id': 'explorer',
22
22
  'order': 10,
23
- 'title': ( localizeWithPath(_moduleId, 50, "File Explorer")),
23
+ 'title': ( localizeWithPath(_moduleId, 51, "File Explorer")),
24
24
  'type': 'object',
25
25
  'properties': {
26
26
  'explorer.openEditors.visible': {
27
27
  'type': 'number',
28
28
  'description': ( localizeWithPath(
29
29
  _moduleId,
30
- 51,
30
+ 52,
31
31
  "The initial maximum number of editors shown in the Open Editors pane. Exceeding this limit will show a scroll bar and allow resizing the pane to display more items."
32
32
  )),
33
33
  'default': 9,
@@ -37,7 +37,7 @@ configurationRegistry.registerConfiguration({
37
37
  'type': 'number',
38
38
  'description': ( localizeWithPath(
39
39
  _moduleId,
40
- 52,
40
+ 53,
41
41
  "The minimum number of editor slots pre-allocated in the Open Editors pane. If set to 0 the Open Editors pane will dynamically resize based on the number of editors."
42
42
  )),
43
43
  'default': 0,
@@ -48,23 +48,23 @@ configurationRegistry.registerConfiguration({
48
48
  'enum': ['editorOrder', 'alphabetical', 'fullPath'],
49
49
  'description': ( localizeWithPath(
50
50
  _moduleId,
51
- 53,
51
+ 54,
52
52
  "Controls the sorting order of editors in the Open Editors pane."
53
53
  )),
54
54
  'enumDescriptions': [
55
55
  ( localizeWithPath(
56
56
  _moduleId,
57
- 54,
57
+ 55,
58
58
  'Editors are ordered in the same order editor tabs are shown.'
59
59
  )),
60
60
  ( localizeWithPath(
61
61
  _moduleId,
62
- 55,
62
+ 56,
63
63
  'Editors are ordered alphabetically by tab name inside each editor group.'
64
64
  )),
65
65
  ( localizeWithPath(
66
66
  _moduleId,
67
- 56,
67
+ 57,
68
68
  'Editors are ordered alphabetically by full path inside each editor group.'
69
69
  ))
70
70
  ],
@@ -75,17 +75,17 @@ configurationRegistry.registerConfiguration({
75
75
  'enum': [true, false, 'focusNoScroll'],
76
76
  'default': true,
77
77
  'enumDescriptions': [
78
- ( localizeWithPath(_moduleId, 57, 'Files will be revealed and selected.')),
79
- ( localizeWithPath(_moduleId, 58, 'Files will not be revealed and selected.')),
78
+ ( localizeWithPath(_moduleId, 58, 'Files will be revealed and selected.')),
79
+ ( localizeWithPath(_moduleId, 59, 'Files will not be revealed and selected.')),
80
80
  ( localizeWithPath(
81
81
  _moduleId,
82
- 59,
82
+ 60,
83
83
  'Files will not be scrolled into view, but will still be focused.'
84
84
  )),
85
85
  ],
86
86
  'description': ( localizeWithPath(
87
87
  _moduleId,
88
- 60,
88
+ 61,
89
89
  "Controls whether the Explorer should automatically reveal and select files when opening them."
90
90
  ))
91
91
  },
@@ -93,7 +93,7 @@ configurationRegistry.registerConfiguration({
93
93
  'type': 'object',
94
94
  'markdownDescription': ( localizeWithPath(
95
95
  _moduleId,
96
- 61,
96
+ 62,
97
97
  "Configure paths or [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files and folders from being revealed and selected in the Explorer when they are opened. Glob patterns are always evaluated relative to the path of the workspace folder unless they are absolute paths."
98
98
  )),
99
99
  'default': { '**/node_modules': true, '**/bower_components': true },
@@ -103,7 +103,7 @@ configurationRegistry.registerConfiguration({
103
103
  'type': 'boolean',
104
104
  'description': ( localizeWithPath(
105
105
  _moduleId,
106
- 62,
106
+ 63,
107
107
  "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern."
108
108
  )),
109
109
  },
@@ -116,7 +116,7 @@ configurationRegistry.registerConfiguration({
116
116
  default: '$(basename).ext',
117
117
  description: ( localizeWithPath(
118
118
  _moduleId,
119
- 63,
119
+ 64,
120
120
  'Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name.'
121
121
  ))
122
122
  }
@@ -129,7 +129,7 @@ configurationRegistry.registerConfiguration({
129
129
  'type': 'boolean',
130
130
  'description': ( localizeWithPath(
131
131
  _moduleId,
132
- 64,
132
+ 65,
133
133
  "Controls whether the Explorer should allow to move files and folders via drag and drop. This setting only effects drag and drop from inside the Explorer."
134
134
  )),
135
135
  'default': true
@@ -138,7 +138,7 @@ configurationRegistry.registerConfiguration({
138
138
  'type': 'boolean',
139
139
  'description': ( localizeWithPath(
140
140
  _moduleId,
141
- 65,
141
+ 66,
142
142
  "Controls whether the Explorer should ask for confirmation to move files and folders via drag and drop."
143
143
  )),
144
144
  'default': true
@@ -147,7 +147,7 @@ configurationRegistry.registerConfiguration({
147
147
  'type': 'boolean',
148
148
  'description': ( localizeWithPath(
149
149
  _moduleId,
150
- 66,
150
+ 67,
151
151
  "Controls whether the Explorer should ask for confirmation when pasting native files and folders."
152
152
  )),
153
153
  'default': true
@@ -156,7 +156,7 @@ configurationRegistry.registerConfiguration({
156
156
  'type': 'boolean',
157
157
  'description': ( localizeWithPath(
158
158
  _moduleId,
159
- 67,
159
+ 68,
160
160
  "Controls whether the Explorer should ask for confirmation when deleting a file via the trash."
161
161
  )),
162
162
  'default': true
@@ -165,7 +165,7 @@ configurationRegistry.registerConfiguration({
165
165
  'type': 'boolean',
166
166
  'description': ( localizeWithPath(
167
167
  _moduleId,
168
- 68,
168
+ 69,
169
169
  "Controls whether the Explorer should support undoing file and folder operations."
170
170
  )),
171
171
  'default': true
@@ -175,16 +175,16 @@ configurationRegistry.registerConfiguration({
175
175
  'enum': [UndoConfirmLevel.Verbose, UndoConfirmLevel.Default, UndoConfirmLevel.Light],
176
176
  'description': ( localizeWithPath(
177
177
  _moduleId,
178
- 69,
178
+ 70,
179
179
  "Controls whether the Explorer should ask for confirmation when undoing."
180
180
  )),
181
181
  'default': UndoConfirmLevel.Default,
182
182
  'enumDescriptions': [
183
- ( localizeWithPath(_moduleId, 70, 'Explorer will prompt before all undo operations.')),
184
- ( localizeWithPath(_moduleId, 71, 'Explorer will prompt before destructive undo operations.')),
183
+ ( localizeWithPath(_moduleId, 71, 'Explorer will prompt before all undo operations.')),
184
+ ( localizeWithPath(_moduleId, 72, 'Explorer will prompt before destructive undo operations.')),
185
185
  ( localizeWithPath(
186
186
  _moduleId,
187
- 72,
187
+ 73,
188
188
  'Explorer will not prompt before undo operations when focused.'
189
189
  )),
190
190
  ],
@@ -193,7 +193,7 @@ configurationRegistry.registerConfiguration({
193
193
  'type': 'boolean',
194
194
  'description': ( localizeWithPath(
195
195
  _moduleId,
196
- 73,
196
+ 74,
197
197
  "Controls whether the Explorer should expand multi-root workspaces containing only one folder during initialization"
198
198
  )),
199
199
  'default': true
@@ -205,38 +205,38 @@ configurationRegistry.registerConfiguration({
205
205
  'enumDescriptions': [
206
206
  ( localizeWithPath(
207
207
  _moduleId,
208
- 74,
208
+ 75,
209
209
  'Files and folders are sorted by their names. Folders are displayed before files.'
210
210
  )),
211
211
  ( localizeWithPath(
212
212
  _moduleId,
213
- 75,
213
+ 76,
214
214
  'Files and folders are sorted by their names. Files are interwoven with folders.'
215
215
  )),
216
216
  ( localizeWithPath(
217
217
  _moduleId,
218
- 76,
218
+ 77,
219
219
  'Files and folders are sorted by their names. Files are displayed before folders.'
220
220
  )),
221
221
  ( localizeWithPath(
222
222
  _moduleId,
223
- 77,
223
+ 78,
224
224
  'Files and folders are grouped by extension type then sorted by their names. Folders are displayed before files.'
225
225
  )),
226
226
  ( localizeWithPath(
227
227
  _moduleId,
228
- 78,
228
+ 79,
229
229
  'Files and folders are sorted by last modified date in descending order. Folders are displayed before files.'
230
230
  )),
231
231
  ( localizeWithPath(
232
232
  _moduleId,
233
- 79,
233
+ 80,
234
234
  'Files and folders are sorted by their names. Folders are displayed before files. Files with nested children are displayed before other files.'
235
235
  ))
236
236
  ],
237
237
  'markdownDescription': ( localizeWithPath(
238
238
  _moduleId,
239
- 80,
239
+ 81,
240
240
  "Controls the property-based sorting of files and folders in the Explorer. When `#explorer.fileNesting.enabled#` is enabled, also controls sorting of nested files."
241
241
  ))
242
242
  },
@@ -245,33 +245,33 @@ configurationRegistry.registerConfiguration({
245
245
  'enum': [LexicographicOptions.Default, LexicographicOptions.Upper, LexicographicOptions.Lower, LexicographicOptions.Unicode],
246
246
  'default': LexicographicOptions.Default,
247
247
  'enumDescriptions': [
248
- ( localizeWithPath(_moduleId, 81, 'Uppercase and lowercase names are mixed together.')),
248
+ ( localizeWithPath(_moduleId, 82, 'Uppercase and lowercase names are mixed together.')),
249
249
  ( localizeWithPath(
250
250
  _moduleId,
251
- 82,
251
+ 83,
252
252
  'Uppercase names are grouped together before lowercase names.'
253
253
  )),
254
254
  ( localizeWithPath(
255
255
  _moduleId,
256
- 83,
256
+ 84,
257
257
  'Lowercase names are grouped together before uppercase names.'
258
258
  )),
259
- ( localizeWithPath(_moduleId, 84, 'Names are sorted in Unicode order.'))
259
+ ( localizeWithPath(_moduleId, 85, 'Names are sorted in Unicode order.'))
260
260
  ],
261
261
  'description': ( localizeWithPath(
262
262
  _moduleId,
263
- 85,
263
+ 86,
264
264
  "Controls the lexicographic sorting of file and folder names in the Explorer."
265
265
  ))
266
266
  },
267
267
  'explorer.decorations.colors': {
268
268
  type: 'boolean',
269
- description: ( localizeWithPath(_moduleId, 86, "Controls whether file decorations should use colors.")),
269
+ description: ( localizeWithPath(_moduleId, 87, "Controls whether file decorations should use colors.")),
270
270
  default: true
271
271
  },
272
272
  'explorer.decorations.badges': {
273
273
  type: 'boolean',
274
- description: ( localizeWithPath(_moduleId, 87, "Controls whether file decorations should use badges.")),
274
+ description: ( localizeWithPath(_moduleId, 88, "Controls whether file decorations should use badges.")),
275
275
  default: true
276
276
  },
277
277
  'explorer.incrementalNaming': {
@@ -280,23 +280,23 @@ configurationRegistry.registerConfiguration({
280
280
  enumDescriptions: [
281
281
  ( localizeWithPath(
282
282
  _moduleId,
283
- 88,
283
+ 89,
284
284
  "Appends the word \"copy\" at the end of the duplicated name potentially followed by a number."
285
285
  )),
286
286
  ( localizeWithPath(
287
287
  _moduleId,
288
- 89,
288
+ 90,
289
289
  "Adds a number at the end of the duplicated name. If some number is already part of the name, tries to increase that number."
290
290
  )),
291
291
  ( localizeWithPath(
292
292
  _moduleId,
293
- 90,
293
+ 91,
294
294
  "Disables incremental naming. If two files with the same name exist you will be prompted to overwrite the existing file."
295
295
  ))
296
296
  ],
297
297
  description: ( localizeWithPath(
298
298
  _moduleId,
299
- 91,
299
+ 92,
300
300
  "Controls which naming strategy to use when giving a new name to a duplicated Explorer item on paste."
301
301
  )),
302
302
  default: 'simple'
@@ -305,7 +305,7 @@ configurationRegistry.registerConfiguration({
305
305
  'type': 'boolean',
306
306
  'description': ( localizeWithPath(
307
307
  _moduleId,
308
- 92,
308
+ 93,
309
309
  "Controls whether the Explorer should render folders in a compact form. In such a form, single child folders will be compressed in a combined tree element. Useful for Java package structures, for example."
310
310
  )),
311
311
  'default': true
@@ -318,13 +318,13 @@ configurationRegistry.registerConfiguration({
318
318
  'auto'
319
319
  ],
320
320
  'enumDescriptions': [
321
- ( localizeWithPath(_moduleId, 93, "Use slash as path separation character.")),
322
- ( localizeWithPath(_moduleId, 94, "Use backslash as path separation character.")),
323
- ( localizeWithPath(_moduleId, 95, "Uses operating system specific path separation character.")),
321
+ ( localizeWithPath(_moduleId, 94, "Use slash as path separation character.")),
322
+ ( localizeWithPath(_moduleId, 95, "Use backslash as path separation character.")),
323
+ ( localizeWithPath(_moduleId, 96, "Uses operating system specific path separation character.")),
324
324
  ],
325
325
  'description': ( localizeWithPath(
326
326
  _moduleId,
327
- 96,
327
+ 97,
328
328
  "The path separation character used when copying relative file paths."
329
329
  )),
330
330
  'default': 'auto'
@@ -333,7 +333,7 @@ configurationRegistry.registerConfiguration({
333
333
  type: 'boolean',
334
334
  markdownDescription: ( localizeWithPath(
335
335
  _moduleId,
336
- 97,
336
+ 98,
337
337
  "Controls whether entries in .gitignore should be parsed and excluded from the Explorer. Similar to {0}.",
338
338
  '`#files.exclude#`'
339
339
  )),
@@ -345,7 +345,7 @@ configurationRegistry.registerConfiguration({
345
345
  scope: ConfigurationScope.RESOURCE,
346
346
  'markdownDescription': ( localizeWithPath(
347
347
  _moduleId,
348
- 98,
348
+ 99,
349
349
  "Controls whether file nesting is enabled in the Explorer. File nesting allows for related files in a directory to be visually grouped together under a single parent file."
350
350
  )),
351
351
  'default': false,
@@ -354,7 +354,7 @@ configurationRegistry.registerConfiguration({
354
354
  'type': 'boolean',
355
355
  'markdownDescription': ( localizeWithPath(
356
356
  _moduleId,
357
- 99,
357
+ 100,
358
358
  "Controls whether file nests are automatically expanded. {0} must be set for this to take effect.",
359
359
  '`#explorer.fileNesting.enabled#`'
360
360
  )),
@@ -365,7 +365,7 @@ configurationRegistry.registerConfiguration({
365
365
  scope: ConfigurationScope.RESOURCE,
366
366
  'markdownDescription': ( localizeWithPath(
367
367
  _moduleId,
368
- 100,
368
+ 101,
369
369
  "Controls nesting of files in the Explorer. {0} must be set for this to take effect. Each __Item__ represents a parent pattern and may contain a single `*` character that matches any string. Each __Value__ represents a comma separated list of the child patterns that should be shown nested under a given parent. Child patterns may contain several special tokens:\n- `${capture}`: Matches the resolved value of the `*` from the parent pattern\n- `${basename}`: Matches the parent file's basename, the `file` in `file.ts`\n- `${extname}`: Matches the parent file's extension, the `ts` in `file.ts`\n- `${dirname}`: Matches the parent file's directory name, the `src` in `src/file.ts`\n- `*`: Matches any string, may only be used once per child pattern",
370
370
  '`#explorer.fileNesting.enabled#`'
371
371
  )),
@@ -373,7 +373,7 @@ configurationRegistry.registerConfiguration({
373
373
  '^[^*]*\\*?[^*]*$': {
374
374
  markdownDescription: ( localizeWithPath(
375
375
  _moduleId,
376
- 101,
376
+ 102,
377
377
  "Each key pattern may contain a single `*` character which will match any string."
378
378
  )),
379
379
  type: 'string',