@codingame/monaco-vscode-search-service-override 10.1.0 → 10.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-search-service-override",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -29,6 +29,6 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "vscode": "npm:@codingame/monaco-vscode-api@10.1.0"
32
+ "vscode": "npm:@codingame/monaco-vscode-api@10.1.1"
33
33
  }
34
34
  }
@@ -83,7 +83,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
83
83
  picker.buttons = [{
84
84
  location: QuickInputButtonLocation.Inline,
85
85
  iconClass: ThemeIcon.asClassName(Codicon.goToSearch),
86
- tooltip: ( localize(8544, "See in Search Panel"))
86
+ tooltip: ( localize(8543, "See in Search Panel"))
87
87
  }];
88
88
  this.editorViewState.reset();
89
89
  disposables.add(picker.onDidTriggerButton(async () => {
@@ -197,7 +197,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
197
197
  type: 'separator',
198
198
  });
199
199
  picks.push({
200
- label: ( localize(8545, "See More Files")),
200
+ label: ( localize(8544, "See More Files")),
201
201
  iconClass: ThemeIcon.asClassName(searchDetailsIcon),
202
202
  accept: async () => {
203
203
  await this.moveToSearchViewlet(matches[limit]);
@@ -214,7 +214,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
214
214
  description,
215
215
  buttons: [{
216
216
  iconClass: ThemeIcon.asClassName(searchOpenInFileIcon),
217
- tooltip: ( localize(8546, "Open File"))
217
+ tooltip: ( localize(8545, "Open File"))
218
218
  }],
219
219
  trigger: async () => {
220
220
  await this.handleAccept(fileMatch, {});
@@ -226,7 +226,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
226
226
  const element = results[matchIndex];
227
227
  if (matchIndex === MAX_RESULTS_PER_FILE) {
228
228
  picks.push({
229
- label: ( localize(8547, "More")),
229
+ label: ( localize(8546, "More")),
230
230
  iconClass: ThemeIcon.asClassName(searchDetailsIcon),
231
231
  accept: async () => {
232
232
  await this.moveToSearchViewlet(element);
@@ -247,7 +247,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
247
247
  },
248
248
  buttons: [{
249
249
  iconClass: ThemeIcon.asClassName(searchActivityBarIcon),
250
- tooltip: ( localize(8548, "See in Search Panel")),
250
+ tooltip: ( localize(8547, "See in Search Panel")),
251
251
  }],
252
252
  ariaLabel: `Match at location ${element.range().startLineNumber}:${element.range().startColumn} - ${previewText}`,
253
253
  accept: async (keyMods, event) => {
@@ -285,7 +285,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
285
285
  if (contentPattern === '') {
286
286
  this.searchModel.searchResult.clear();
287
287
  return [{
288
- label: ( localize(8549, "Enter a term to search for across your files."))
288
+ label: ( localize(8548, "Enter a term to search for across your files."))
289
289
  }];
290
290
  }
291
291
  const conditionalTokenCts = disposables.add(( (new CancellationTokenSource())));
@@ -310,7 +310,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
310
310
  picks: syncResult,
311
311
  additionalPicks: allMatches.asyncResults
312
312
  .then(asyncResults => (asyncResults.length + syncResult.length === 0) ? [{
313
- label: ( localize(8550, "No matching results"))
313
+ label: ( localize(8549, "No matching results"))
314
314
  }] : this._getPicksFromMatches(asyncResults, MAX_FILES_SHOWN - matches.length))
315
315
  .then(picks => {
316
316
  if (picks.length > 0) {
@@ -39,7 +39,7 @@ registerContributions$1();
39
39
  const SEARCH_MODE_CONFIG = 'search.mode';
40
40
  const viewContainer = ( (Registry.as(Extensions.ViewContainersRegistry))).registerViewContainer({
41
41
  id: VIEWLET_ID,
42
- title: ( localize2(3404, "Search")),
42
+ title: ( localize2(3402, "Search")),
43
43
  ctorDescriptor: ( (new SyncDescriptor(
44
44
  ViewPaneContainer,
45
45
  [VIEWLET_ID, { mergeViewWithContainerWhenSingleView: true }]
@@ -51,13 +51,13 @@ const viewContainer = ( (Registry.as(Extensions.ViewContainersRegistry))).regist
51
51
  const viewDescriptor = {
52
52
  id: VIEW_ID,
53
53
  containerIcon: searchViewIcon,
54
- name: ( localize2(3404, "Search")),
54
+ name: ( localize2(3402, "Search")),
55
55
  ctorDescriptor: ( (new SyncDescriptor(SearchView))),
56
56
  canToggleVisibility: false,
57
57
  canMoveView: true,
58
58
  openCommandActionDescriptor: {
59
59
  id: viewContainer.id,
60
- mnemonicTitle: ( localize(3405, "&&Search")),
60
+ mnemonicTitle: ( localize(3403, "&&Search")),
61
61
  keybindings: {
62
62
  primary: 2048 | 1024 | 36 ,
63
63
  when: ( (ContextKeyExpr.regex('neverMatch', /doesNotMatch/)))
@@ -71,14 +71,14 @@ quickAccessRegistry.registerQuickAccessProvider({
71
71
  ctor: AnythingQuickAccessProvider,
72
72
  prefix: AnythingQuickAccessProvider.PREFIX,
73
73
  placeholder: ( localize(
74
- 3406,
74
+ 3404,
75
75
  "Search files by name (append {0} to go to line or {1} to go to symbol)",
76
76
  AbstractGotoLineQuickAccessProvider.PREFIX,
77
77
  GotoSymbolQuickAccessProvider.PREFIX
78
78
  )),
79
79
  contextKey: defaultQuickAccessContextKeyValue,
80
80
  helpEntries: [{
81
- description: ( localize(3407, "Go to File")),
81
+ description: ( localize(3405, "Go to File")),
82
82
  commandId: 'workbench.action.quickOpen',
83
83
  commandCenterOrder: 10
84
84
  }]
@@ -86,18 +86,18 @@ quickAccessRegistry.registerQuickAccessProvider({
86
86
  quickAccessRegistry.registerQuickAccessProvider({
87
87
  ctor: SymbolsQuickAccessProvider,
88
88
  prefix: SymbolsQuickAccessProvider.PREFIX,
89
- placeholder: ( localize(3408, "Type the name of a symbol to open.")),
89
+ placeholder: ( localize(3406, "Type the name of a symbol to open.")),
90
90
  contextKey: 'inWorkspaceSymbolsPicker',
91
- helpEntries: [{ description: ( localize(3409, "Go to Symbol in Workspace")), commandId: "workbench.action.showAllSymbols" }]
91
+ helpEntries: [{ description: ( localize(3407, "Go to Symbol in Workspace")), commandId: "workbench.action.showAllSymbols" }]
92
92
  });
93
93
  quickAccessRegistry.registerQuickAccessProvider({
94
94
  ctor: TextSearchQuickAccess,
95
95
  prefix: TEXT_SEARCH_QUICK_ACCESS_PREFIX,
96
96
  contextKey: 'inTextSearchPicker',
97
- placeholder: ( localize(3410, "Search for text in your workspace files.")),
97
+ placeholder: ( localize(3408, "Search for text in your workspace files.")),
98
98
  helpEntries: [
99
99
  {
100
- description: ( localize(3411, "Search for Text")),
100
+ description: ( localize(3409, "Search for Text")),
101
101
  commandId: "workbench.action.quickTextSearch" ,
102
102
  commandCenterOrder: 25,
103
103
  }
@@ -107,13 +107,13 @@ const configurationRegistry = ( (Registry.as(Extensions$2.Configuration)));
107
107
  configurationRegistry.registerConfiguration({
108
108
  id: 'search',
109
109
  order: 13,
110
- title: ( localize(3412, "Search")),
110
+ title: ( localize(3410, "Search")),
111
111
  type: 'object',
112
112
  properties: {
113
113
  [SEARCH_EXCLUDE_CONFIG]: {
114
114
  type: 'object',
115
115
  markdownDescription: ( localize(
116
- 3413,
116
+ 3411,
117
117
  "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files and folders in fulltext searches and file search in quick open. To exclude files from the recently opened list in quick open, patterns must be absolute (for example `**/node_modules/**`). Inherits all glob patterns from the `#files.exclude#` setting."
118
118
  )),
119
119
  default: { '**/node_modules': true, '**/bower_components': true, '**/*.code-search': true },
@@ -122,7 +122,7 @@ configurationRegistry.registerConfiguration({
122
122
  {
123
123
  type: 'boolean',
124
124
  description: ( localize(
125
- 3414,
125
+ 3412,
126
126
  "The glob pattern to match file paths against. Set to true or false to enable or disable the pattern."
127
127
  )),
128
128
  },
@@ -134,7 +134,7 @@ configurationRegistry.registerConfiguration({
134
134
  pattern: '\\w*\\$\\(basename\\)\\w*',
135
135
  default: '$(basename).ext',
136
136
  markdownDescription: ( localize(
137
- 3415,
137
+ 3413,
138
138
  'Additional check on the siblings of a matching file. Use \\$(basename) as variable for the matching file name.'
139
139
  ))
140
140
  }
@@ -149,26 +149,26 @@ configurationRegistry.registerConfiguration({
149
149
  enum: ['view', 'reuseEditor', 'newEditor'],
150
150
  default: 'view',
151
151
  markdownDescription: ( localize(
152
- 3416,
152
+ 3414,
153
153
  "Controls where new `Search: Find in Files` and `Find in Folder` operations occur: either in the search view, or in a search editor."
154
154
  )),
155
155
  enumDescriptions: [
156
- ( localize(3417, "Search in the search view, either in the panel or side bars.")),
156
+ ( localize(3415, "Search in the search view, either in the panel or side bars.")),
157
157
  ( localize(
158
- 3418,
158
+ 3416,
159
159
  "Search in an existing search editor if present, otherwise in a new search editor."
160
160
  )),
161
- ( localize(3419, "Search in a new search editor.")),
161
+ ( localize(3417, "Search in a new search editor.")),
162
162
  ]
163
163
  },
164
164
  'search.useRipgrep': {
165
165
  type: 'boolean',
166
166
  description: ( localize(
167
- 3420,
167
+ 3418,
168
168
  "This setting is deprecated and now falls back on \"search.usePCRE2\"."
169
169
  )),
170
170
  deprecationMessage: ( localize(
171
- 3421,
171
+ 3419,
172
172
  "Deprecated. Consider \"search.usePCRE2\" for advanced regex feature support."
173
173
  )),
174
174
  default: true
@@ -176,11 +176,11 @@ configurationRegistry.registerConfiguration({
176
176
  'search.maintainFileSearchCache': {
177
177
  type: 'boolean',
178
178
  deprecationMessage: ( localize(
179
- 3422,
179
+ 3420,
180
180
  "The search cache is kept in the extension host which never shuts down, so this setting is no longer needed."
181
181
  )),
182
182
  description: ( localize(
183
- 3423,
183
+ 3421,
184
184
  "When enabled, the searchService process will be kept alive instead of being shut down after an hour of inactivity. This will keep the file search cache in memory."
185
185
  )),
186
186
  default: false
@@ -188,7 +188,7 @@ configurationRegistry.registerConfiguration({
188
188
  'search.useIgnoreFiles': {
189
189
  type: 'boolean',
190
190
  markdownDescription: ( localize(
191
- 3424,
191
+ 3422,
192
192
  "Controls whether to use `.gitignore` and `.ignore` files when searching for files."
193
193
  )),
194
194
  default: true,
@@ -197,7 +197,7 @@ configurationRegistry.registerConfiguration({
197
197
  'search.useGlobalIgnoreFiles': {
198
198
  type: 'boolean',
199
199
  markdownDescription: ( localize(
200
- 3425,
200
+ 3423,
201
201
  "Controls whether to use your global gitignore file (for example, from `$HOME/.config/git/ignore`) when searching for files. Requires {0} to be enabled.",
202
202
  '`#search.useIgnoreFiles#`'
203
203
  )),
@@ -207,7 +207,7 @@ configurationRegistry.registerConfiguration({
207
207
  'search.useParentIgnoreFiles': {
208
208
  type: 'boolean',
209
209
  markdownDescription: ( localize(
210
- 3426,
210
+ 3424,
211
211
  "Controls whether to use `.gitignore` and `.ignore` files in parent directories when searching for files. Requires {0} to be enabled.",
212
212
  '`#search.useIgnoreFiles#`'
213
213
  )),
@@ -217,7 +217,7 @@ configurationRegistry.registerConfiguration({
217
217
  'search.quickOpen.includeSymbols': {
218
218
  type: 'boolean',
219
219
  description: ( localize(
220
- 3427,
220
+ 3425,
221
221
  "Whether to include results from a global symbol search in the file results for Quick Open."
222
222
  )),
223
223
  default: false
@@ -225,7 +225,7 @@ configurationRegistry.registerConfiguration({
225
225
  'search.ripgrep.maxThreads': {
226
226
  type: 'number',
227
227
  description: ( localize(
228
- 3428,
228
+ 3426,
229
229
  "Number of threads to use for searching. When set to 0, the engine automatically determines this value."
230
230
  )),
231
231
  default: 0
@@ -233,7 +233,7 @@ configurationRegistry.registerConfiguration({
233
233
  'search.quickOpen.includeHistory': {
234
234
  type: 'boolean',
235
235
  description: ( localize(
236
- 3429,
236
+ 3427,
237
237
  "Whether to include results from recently opened files in the file results for Quick Open."
238
238
  )),
239
239
  default: true
@@ -244,28 +244,28 @@ configurationRegistry.registerConfiguration({
244
244
  default: 'default',
245
245
  enumDescriptions: [
246
246
  ( localize(
247
- 3430,
247
+ 3428,
248
248
  'History entries are sorted by relevance based on the filter value used. More relevant entries appear first.'
249
249
  )),
250
250
  ( localize(
251
- 3431,
251
+ 3429,
252
252
  'History entries are sorted by recency. More recently opened entries appear first.'
253
253
  ))
254
254
  ],
255
255
  description: ( localize(
256
- 3432,
256
+ 3430,
257
257
  "Controls sorting order of editor history in quick open when filtering."
258
258
  ))
259
259
  },
260
260
  'search.followSymlinks': {
261
261
  type: 'boolean',
262
- description: ( localize(3433, "Controls whether to follow symlinks while searching.")),
262
+ description: ( localize(3431, "Controls whether to follow symlinks while searching.")),
263
263
  default: true
264
264
  },
265
265
  'search.smartCase': {
266
266
  type: 'boolean',
267
267
  description: ( localize(
268
- 3434,
268
+ 3432,
269
269
  "Search case-insensitively if the pattern is all lowercase, otherwise, search case-sensitively."
270
270
  )),
271
271
  default: false
@@ -274,7 +274,7 @@ configurationRegistry.registerConfiguration({
274
274
  type: 'boolean',
275
275
  default: false,
276
276
  description: ( localize(
277
- 3435,
277
+ 3433,
278
278
  "Controls whether the search view should read or modify the shared find clipboard on macOS."
279
279
  )),
280
280
  included: isMacintosh
@@ -284,11 +284,11 @@ configurationRegistry.registerConfiguration({
284
284
  enum: ['sidebar', 'panel'],
285
285
  default: 'sidebar',
286
286
  description: ( localize(
287
- 3436,
287
+ 3434,
288
288
  "Controls whether the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space."
289
289
  )),
290
290
  deprecationMessage: ( localize(
291
- 3437,
291
+ 3435,
292
292
  "This setting is deprecated. You can drag the search icon to a new location instead."
293
293
  ))
294
294
  },
@@ -296,7 +296,7 @@ configurationRegistry.registerConfiguration({
296
296
  type: ['number', 'null'],
297
297
  default: DEFAULT_MAX_SEARCH_RESULTS,
298
298
  markdownDescription: ( localize(
299
- 3438,
299
+ 3436,
300
300
  "Controls the maximum number of search results, this can be set to `null` (empty) to return unlimited results."
301
301
  ))
302
302
  },
@@ -305,37 +305,37 @@ configurationRegistry.registerConfiguration({
305
305
  enum: ['auto', 'alwaysCollapse', 'alwaysExpand'],
306
306
  enumDescriptions: [
307
307
  ( localize(
308
- 3439,
308
+ 3437,
309
309
  "Files with less than 10 results are expanded. Others are collapsed."
310
310
  )),
311
311
  '',
312
312
  ''
313
313
  ],
314
314
  default: 'alwaysExpand',
315
- description: ( localize(3440, "Controls whether the search results will be collapsed or expanded.")),
315
+ description: ( localize(3438, "Controls whether the search results will be collapsed or expanded.")),
316
316
  },
317
317
  'search.useReplacePreview': {
318
318
  type: 'boolean',
319
319
  default: true,
320
320
  description: ( localize(
321
- 3441,
321
+ 3439,
322
322
  "Controls whether to open Replace Preview when selecting or replacing a match."
323
323
  )),
324
324
  },
325
325
  'search.showLineNumbers': {
326
326
  type: 'boolean',
327
327
  default: false,
328
- description: ( localize(3442, "Controls whether to show line numbers for search results.")),
328
+ description: ( localize(3440, "Controls whether to show line numbers for search results.")),
329
329
  },
330
330
  'search.usePCRE2': {
331
331
  type: 'boolean',
332
332
  default: false,
333
333
  description: ( localize(
334
- 3443,
334
+ 3441,
335
335
  "Whether to use the PCRE2 regex engine in text search. This enables using some advanced regex features like lookahead and backreferences. However, not all PCRE2 features are supported - only features that are also supported by JavaScript."
336
336
  )),
337
337
  deprecationMessage: ( localize(
338
- 3444,
338
+ 3442,
339
339
  "Deprecated. PCRE2 will be used automatically when using regex features that are only supported by PCRE2."
340
340
  )),
341
341
  },
@@ -344,27 +344,27 @@ configurationRegistry.registerConfiguration({
344
344
  enum: ['auto', 'right'],
345
345
  enumDescriptions: [
346
346
  ( localize(
347
- 3445,
347
+ 3443,
348
348
  "Position the actionbar to the right when the search view is narrow, and immediately after the content when the search view is wide."
349
349
  )),
350
- ( localize(3446, "Always position the actionbar to the right.")),
350
+ ( localize(3444, "Always position the actionbar to the right.")),
351
351
  ],
352
352
  default: 'right',
353
353
  description: ( localize(
354
- 3447,
354
+ 3445,
355
355
  "Controls the positioning of the actionbar on rows in the search view."
356
356
  ))
357
357
  },
358
358
  'search.searchOnType': {
359
359
  type: 'boolean',
360
360
  default: true,
361
- description: ( localize(3448, "Search all files as you type."))
361
+ description: ( localize(3446, "Search all files as you type."))
362
362
  },
363
363
  'search.seedWithNearestWord': {
364
364
  type: 'boolean',
365
365
  default: false,
366
366
  description: ( localize(
367
- 3449,
367
+ 3447,
368
368
  "Enable seeding search from the word nearest the cursor when the active editor has no selection."
369
369
  ))
370
370
  },
@@ -372,7 +372,7 @@ configurationRegistry.registerConfiguration({
372
372
  type: 'boolean',
373
373
  default: false,
374
374
  markdownDescription: ( localize(
375
- 3450,
375
+ 3448,
376
376
  "Update the search query to the editor's selected text when focusing the search view. This happens either on click or when triggering the `workbench.views.search.focus` command."
377
377
  ))
378
378
  },
@@ -380,7 +380,7 @@ configurationRegistry.registerConfiguration({
380
380
  type: 'number',
381
381
  default: 300,
382
382
  markdownDescription: ( localize(
383
- 3451,
383
+ 3449,
384
384
  "When {0} is enabled, controls the timeout in milliseconds between a character being typed and the search starting. Has no effect when {0} is disabled.",
385
385
  '`#search.searchOnType#`'
386
386
  ))
@@ -390,30 +390,30 @@ configurationRegistry.registerConfiguration({
390
390
  enum: ['selectWord', 'goToLocation', 'openLocationToSide'],
391
391
  default: 'goToLocation',
392
392
  enumDescriptions: [
393
- ( localize(3452, "Double-clicking selects the word under the cursor.")),
394
- ( localize(3453, "Double-clicking opens the result in the active editor group.")),
393
+ ( localize(3450, "Double-clicking selects the word under the cursor.")),
394
+ ( localize(3451, "Double-clicking opens the result in the active editor group.")),
395
395
  ( localize(
396
- 3454,
396
+ 3452,
397
397
  "Double-clicking opens the result in the editor group to the side, creating one if it does not yet exist."
398
398
  )),
399
399
  ],
400
- markdownDescription: ( localize(3455, "Configure effect of double-clicking a result in a search editor."))
400
+ markdownDescription: ( localize(3453, "Configure effect of double-clicking a result in a search editor."))
401
401
  },
402
402
  'search.searchEditor.singleClickBehaviour': {
403
403
  type: 'string',
404
404
  enum: ['default', 'peekDefinition',],
405
405
  default: 'default',
406
406
  enumDescriptions: [
407
- ( localize(3456, "Single-clicking does nothing.")),
408
- ( localize(3457, "Single-clicking opens a Peek Definition window.")),
407
+ ( localize(3454, "Single-clicking does nothing.")),
408
+ ( localize(3455, "Single-clicking opens a Peek Definition window.")),
409
409
  ],
410
- markdownDescription: ( localize(3458, "Configure effect of single-clicking a result in a search editor."))
410
+ markdownDescription: ( localize(3456, "Configure effect of single-clicking a result in a search editor."))
411
411
  },
412
412
  'search.searchEditor.reusePriorSearchConfiguration': {
413
413
  type: 'boolean',
414
414
  default: false,
415
415
  markdownDescription: ( localize(
416
- 3459,
416
+ 3457,
417
417
  "When enabled, new Search Editors will reuse the includes, excludes, and flags of the previously opened Search Editor."
418
418
  ))
419
419
  },
@@ -421,7 +421,7 @@ configurationRegistry.registerConfiguration({
421
421
  type: ['number', 'null'],
422
422
  default: 1,
423
423
  markdownDescription: ( localize(
424
- 3460,
424
+ 3458,
425
425
  "The default number of surrounding context lines to use when creating new Search Editors. If using `#search.searchEditor.reusePriorSearchConfiguration#`, this can be set to `null` (empty) to use the prior Search Editor's configuration."
426
426
  ))
427
427
  },
@@ -429,7 +429,7 @@ configurationRegistry.registerConfiguration({
429
429
  type: 'boolean',
430
430
  default: false,
431
431
  markdownDescription: ( localize(
432
- 3461,
432
+ 3459,
433
433
  "When a search is triggered, focus the Search Editor results instead of the Search Editor input."
434
434
  ))
435
435
  },
@@ -439,31 +439,31 @@ configurationRegistry.registerConfiguration({
439
439
  default: "default" ,
440
440
  enumDescriptions: [
441
441
  ( localize(
442
- 3462,
442
+ 3460,
443
443
  "Results are sorted by folder and file names, in alphabetical order."
444
444
  )),
445
445
  ( localize(
446
- 3463,
446
+ 3461,
447
447
  "Results are sorted by file names ignoring folder order, in alphabetical order."
448
448
  )),
449
- ( localize(3464, "Results are sorted by file extensions, in alphabetical order.")),
449
+ ( localize(3462, "Results are sorted by file extensions, in alphabetical order.")),
450
450
  ( localize(
451
- 3465,
451
+ 3463,
452
452
  "Results are sorted by file last modified date, in descending order."
453
453
  )),
454
- ( localize(3466, "Results are sorted by count per file, in descending order.")),
455
- ( localize(3467, "Results are sorted by count per file, in ascending order."))
454
+ ( localize(3464, "Results are sorted by count per file, in descending order.")),
455
+ ( localize(3465, "Results are sorted by count per file, in ascending order."))
456
456
  ],
457
- description: ( localize(3468, "Controls sorting order of search results."))
457
+ description: ( localize(3466, "Controls sorting order of search results."))
458
458
  },
459
459
  'search.decorations.colors': {
460
460
  type: 'boolean',
461
- description: ( localize(3469, "Controls whether search file decorations should use colors.")),
461
+ description: ( localize(3467, "Controls whether search file decorations should use colors.")),
462
462
  default: true
463
463
  },
464
464
  'search.decorations.badges': {
465
465
  type: 'boolean',
466
- description: ( localize(3470, "Controls whether search file decorations should use badges.")),
466
+ description: ( localize(3468, "Controls whether search file decorations should use badges.")),
467
467
  default: true
468
468
  },
469
469
  'search.defaultViewMode': {
@@ -471,15 +471,15 @@ configurationRegistry.registerConfiguration({
471
471
  enum: ["tree" , "list" ],
472
472
  default: "list" ,
473
473
  enumDescriptions: [
474
- ( localize(3471, "Shows search results as a tree.")),
475
- ( localize(3472, "Shows search results as a list."))
474
+ ( localize(3469, "Shows search results as a tree.")),
475
+ ( localize(3470, "Shows search results as a list."))
476
476
  ],
477
- description: ( localize(3473, "Controls the default search result view mode."))
477
+ description: ( localize(3471, "Controls the default search result view mode."))
478
478
  },
479
479
  'search.quickAccess.preserveInput': {
480
480
  type: 'boolean',
481
481
  description: ( localize(
482
- 3474,
482
+ 3472,
483
483
  "Controls whether the last typed input to Quick Search should be restored when opening it the next time."
484
484
  )),
485
485
  default: false
@@ -487,7 +487,7 @@ configurationRegistry.registerConfiguration({
487
487
  'search.experimental.closedNotebookRichContentResults': {
488
488
  type: 'boolean',
489
489
  description: ( localize(
490
- 3475,
490
+ 3473,
491
491
  "Show notebook editor rich content results for closed notebooks. Please refresh your search results after changing this setting."
492
492
  )),
493
493
  default: false
@@ -12,7 +12,7 @@ registerAction2(class CopyMatchCommandAction extends Action2 {
12
12
  constructor() {
13
13
  super({
14
14
  id: "search.action.copyMatch" ,
15
- title: ( localize2(8500, "Copy")),
15
+ title: ( localize2(8527, "Copy")),
16
16
  category,
17
17
  keybinding: {
18
18
  weight: 200 ,
@@ -35,7 +35,7 @@ registerAction2(class CopyPathCommandAction extends Action2 {
35
35
  constructor() {
36
36
  super({
37
37
  id: "search.action.copyPath" ,
38
- title: ( localize2(8501, "Copy Path")),
38
+ title: ( localize2(8528, "Copy Path")),
39
39
  category,
40
40
  keybinding: {
41
41
  weight: 200 ,
@@ -61,7 +61,7 @@ registerAction2(class CopyAllCommandAction extends Action2 {
61
61
  constructor() {
62
62
  super({
63
63
  id: "search.action.copyAll" ,
64
- title: ( localize2(8502, "Copy All")),
64
+ title: ( localize2(8529, "Copy All")),
65
65
  category,
66
66
  menu: [{
67
67
  id: MenuId.SearchContext,
@@ -20,7 +20,7 @@ registerAction2(class ToggleQueryDetailsAction extends Action2 {
20
20
  constructor() {
21
21
  super({
22
22
  id: "workbench.action.search.toggleQueryDetails" ,
23
- title: ( localize2(8513, "Toggle Query Details")),
23
+ title: ( localize2(8500, "Toggle Query Details")),
24
24
  category,
25
25
  keybinding: {
26
26
  weight: 200 ,
@@ -44,7 +44,7 @@ registerAction2(class CloseReplaceAction extends Action2 {
44
44
  constructor() {
45
45
  super({
46
46
  id: "closeReplaceInFilesWidget" ,
47
- title: ( localize2(8514, "Close Replace Widget")),
47
+ title: ( localize2(8501, "Close Replace Widget")),
48
48
  category,
49
49
  keybinding: {
50
50
  weight: 200 ,
@@ -69,7 +69,7 @@ registerAction2(class ToggleCaseSensitiveCommandAction extends Action2 {
69
69
  constructor() {
70
70
  super({
71
71
  id: "toggleSearchCaseSensitive" ,
72
- title: ( localize2(8515, "Toggle Case Sensitive")),
72
+ title: ( localize2(8502, "Toggle Case Sensitive")),
73
73
  category,
74
74
  keybinding: Object.assign({
75
75
  weight: 200 ,
@@ -88,7 +88,7 @@ registerAction2(class ToggleWholeWordCommandAction extends Action2 {
88
88
  constructor() {
89
89
  super({
90
90
  id: "toggleSearchWholeWord" ,
91
- title: ( localize2(8516, "Toggle Whole Word")),
91
+ title: ( localize2(8503, "Toggle Whole Word")),
92
92
  keybinding: Object.assign({
93
93
  weight: 200 ,
94
94
  when: SearchContext.SearchViewFocusedKey,
@@ -104,7 +104,7 @@ registerAction2(class ToggleRegexCommandAction extends Action2 {
104
104
  constructor() {
105
105
  super({
106
106
  id: "toggleSearchRegex" ,
107
- title: ( localize2(8517, "Toggle Regex")),
107
+ title: ( localize2(8504, "Toggle Regex")),
108
108
  keybinding: Object.assign({
109
109
  weight: 200 ,
110
110
  when: SearchContext.SearchViewFocusedKey,
@@ -120,7 +120,7 @@ registerAction2(class TogglePreserveCaseAction extends Action2 {
120
120
  constructor() {
121
121
  super({
122
122
  id: "toggleSearchPreserveCase" ,
123
- title: ( localize2(8518, "Toggle Preserve Case")),
123
+ title: ( localize2(8505, "Toggle Preserve Case")),
124
124
  keybinding: Object.assign({
125
125
  weight: 200 ,
126
126
  when: SearchContext.SearchViewFocusedKey,
@@ -136,7 +136,7 @@ registerAction2(class OpenMatchAction extends Action2 {
136
136
  constructor() {
137
137
  super({
138
138
  id: "search.action.openResult" ,
139
- title: ( localize2(8519, "Open Match")),
139
+ title: ( localize2(8506, "Open Match")),
140
140
  category,
141
141
  keybinding: {
142
142
  weight: 200 ,
@@ -168,7 +168,7 @@ registerAction2(class OpenMatchToSideAction extends Action2 {
168
168
  constructor() {
169
169
  super({
170
170
  id: "search.action.openResultToSide" ,
171
- title: ( localize2(8520, "Open Match To Side")),
171
+ title: ( localize2(8507, "Open Match To Side")),
172
172
  category,
173
173
  keybinding: {
174
174
  weight: 200 ,
@@ -192,7 +192,7 @@ registerAction2(class AddCursorsAtSearchResultsAction extends Action2 {
192
192
  constructor() {
193
193
  super({
194
194
  id: "addCursorsAtSearchResults" ,
195
- title: ( localize2(8521, "Add Cursors at Search Results")),
195
+ title: ( localize2(8508, "Add Cursors at Search Results")),
196
196
  keybinding: {
197
197
  weight: 200 ,
198
198
  when: ( (ContextKeyExpr.and(SearchContext.SearchViewVisibleKey, SearchContext.FileMatchOrMatchFocusKey))),
@@ -213,7 +213,7 @@ registerAction2(class FocusNextInputAction extends Action2 {
213
213
  constructor() {
214
214
  super({
215
215
  id: "search.focus.nextInputBox" ,
216
- title: ( localize2(8522, "Focus Next Input")),
216
+ title: ( localize2(8509, "Focus Next Input")),
217
217
  category,
218
218
  keybinding: {
219
219
  weight: 200 ,
@@ -239,7 +239,7 @@ registerAction2(class FocusPreviousInputAction extends Action2 {
239
239
  constructor() {
240
240
  super({
241
241
  id: "search.focus.previousInputBox" ,
242
- title: ( localize2(8523, "Focus Previous Input")),
242
+ title: ( localize2(8510, "Focus Previous Input")),
243
243
  category,
244
244
  keybinding: {
245
245
  weight: 200 ,
@@ -269,7 +269,7 @@ registerAction2(class FocusSearchFromResultsAction extends Action2 {
269
269
  constructor() {
270
270
  super({
271
271
  id: "search.action.focusSearchFromResults" ,
272
- title: ( localize2(8524, "Focus Search From Results")),
272
+ title: ( localize2(8511, "Focus Search From Results")),
273
273
  category,
274
274
  keybinding: {
275
275
  weight: 200 ,
@@ -291,7 +291,7 @@ registerAction2(class ToggleSearchOnTypeAction extends Action2 {
291
291
  constructor() {
292
292
  super({
293
293
  id: "workbench.action.toggleSearchOnType" ,
294
- title: ( localize2(8525, "Toggle Search on Type")),
294
+ title: ( localize2(8512, "Toggle Search on Type")),
295
295
  category,
296
296
  });
297
297
  }
@@ -305,7 +305,7 @@ registerAction2(class FocusSearchListCommandAction extends Action2 {
305
305
  constructor() {
306
306
  super({
307
307
  id: "search.action.focusSearchList" ,
308
- title: ( localize2(8526, "Focus List")),
308
+ title: ( localize2(8513, "Focus List")),
309
309
  category,
310
310
  f1: true
311
311
  });
@@ -318,7 +318,7 @@ registerAction2(class FocusNextSearchResultAction extends Action2 {
318
318
  constructor() {
319
319
  super({
320
320
  id: "search.action.focusNextSearchResult" ,
321
- title: ( localize2(8527, "Focus Next Search Result")),
321
+ title: ( localize2(8514, "Focus Next Search Result")),
322
322
  keybinding: [{
323
323
  primary: 62 ,
324
324
  weight: 200 ,
@@ -336,7 +336,7 @@ registerAction2(class FocusPreviousSearchResultAction extends Action2 {
336
336
  constructor() {
337
337
  super({
338
338
  id: "search.action.focusPreviousSearchResult" ,
339
- title: ( localize2(8528, "Focus Previous Search Result")),
339
+ title: ( localize2(8515, "Focus Previous Search Result")),
340
340
  keybinding: [{
341
341
  primary: 1024 | 62 ,
342
342
  weight: 200 ,
@@ -354,7 +354,7 @@ registerAction2(class ReplaceInFilesAction extends Action2 {
354
354
  constructor() {
355
355
  super({
356
356
  id: "workbench.action.replaceInFiles" ,
357
- title: ( localize2(8529, "Replace in Files")),
357
+ title: ( localize2(8516, "Replace in Files")),
358
358
  keybinding: [{
359
359
  primary: 2048 | 1024 | 38 ,
360
360
  weight: 200 ,
@@ -11,7 +11,7 @@ registerAction2(class TextSearchQuickAccessAction extends Action2 {
11
11
  constructor() {
12
12
  super({
13
13
  id: "workbench.action.quickTextSearch" ,
14
- title: ( localize2(8543, "Quick Search")),
14
+ title: ( localize2(8550, "Quick Search")),
15
15
  category,
16
16
  f1: true
17
17
  });
@@ -81,7 +81,7 @@ let LocalFileSearchWorkerClient = class LocalFileSearchWorkerClient extends Disp
81
81
  return {
82
82
  results: [],
83
83
  messages: [{
84
- text: ( localize(3402, "Unable to search with Web Worker text searcher")), type: TextSearchCompleteMessageType.Warning
84
+ text: ( localize(3474, "Unable to search with Web Worker text searcher")), type: TextSearchCompleteMessageType.Warning
85
85
  }],
86
86
  };
87
87
  }
@@ -118,7 +118,7 @@ let LocalFileSearchWorkerClient = class LocalFileSearchWorkerClient extends Disp
118
118
  return {
119
119
  results: [],
120
120
  messages: [{
121
- text: ( localize(3403, "Unable to search with Web Worker file searcher")), type: TextSearchCompleteMessageType.Warning
121
+ text: ( localize(3475, "Unable to search with Web Worker file searcher")), type: TextSearchCompleteMessageType.Warning
122
122
  }],
123
123
  };
124
124
  }