@codingame/monaco-vscode-search-service-override 1.83.2 → 1.83.3-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +16 -6
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +11 -17
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -6
- package/vscode/src/vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess.js +5 -5
- package/vscode/src/vs/workbench/contrib/search/browser/replaceService.js +2 -7
- package/vscode/src/vs/workbench/contrib/search/browser/search.contribution.js +93 -239
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsCopy.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +9 -12
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsNav.js +17 -17
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsRemoveReplace.js +4 -4
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsSymbol.js +3 -6
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTextQuickAccess.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +8 -8
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +7 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +18 -36
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -6
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +12 -40
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +89 -205
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +8 -11
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.js +21 -42
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditor.js +10 -16
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -8
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +6 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-search-service-override",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.3-next.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.83.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.83.3-next.0",
|
|
22
22
|
"monaco-editor": "0.44.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js
CHANGED
|
@@ -14,12 +14,22 @@ import { filterIcon } from 'vscode/vscode/vs/workbench/contrib/extensions/browse
|
|
|
14
14
|
import { isSafari } from 'monaco-editor/esm/vs/base/common/platform.js';
|
|
15
15
|
import { Disposable } from 'monaco-editor/esm/vs/base/common/lifecycle.js';
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.find', "Find");
|
|
18
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'placeholder.find', "Find");
|
|
19
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.previousMatchButton', "Previous Match");
|
|
20
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.nextMatchButton', "Next Match");
|
|
21
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.closeButton', "Close");
|
|
22
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.toggleReplaceButton', "Toggle Replace");
|
|
23
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.replace', "Replace");
|
|
24
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'placeholder.replace', "Replace");
|
|
25
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.replaceButton', "Replace");
|
|
26
|
+
nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'label.replaceAllButton', "Replace All");
|
|
27
|
+
registerIcon('find-filter', Codicon.filter, nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'findFilterIcon', 'Icon for Find Filter in find widget.'));
|
|
28
|
+
const NOTEBOOK_FIND_FILTERS = nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'notebook.find.filter.filterAction', "Find Filters");
|
|
29
|
+
const NOTEBOOK_FIND_IN_MARKUP_INPUT = nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'notebook.find.filter.findInMarkupInput', "Markdown Source");
|
|
30
|
+
const NOTEBOOK_FIND_IN_MARKUP_PREVIEW = nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'notebook.find.filter.findInMarkupPreview', "Rendered Markdown");
|
|
31
|
+
const NOTEBOOK_FIND_IN_CODE_INPUT = nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'notebook.find.filter.findInCodeInput', "Code Cell Source");
|
|
32
|
+
const NOTEBOOK_FIND_IN_CODE_OUTPUT = nls.localizeWithPath('vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget', 'notebook.find.filter.findInCodeOutput', "Code Cell Output");
|
|
23
33
|
const NOTEBOOK_FIND_WIDGET_INITIAL_WIDTH = 318;
|
|
24
34
|
const NOTEBOOK_FIND_WIDGET_INITIAL_HORIZONTAL_PADDING = 4;
|
|
25
35
|
let NotebookFindFilterActionViewItem = class NotebookFindFilterActionViewItem extends DropdownMenuActionViewItem {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
|
|
2
2
|
import './media/anythingQuickAccess.css.js';
|
|
3
3
|
import { QuickPickItemScorerAccessor, QuickInputHideReason, quickPickItemScorerAccessor, IQuickInputService } from 'monaco-editor/esm/vs/platform/quickinput/common/quickInput.js';
|
|
4
|
-
import { PickerQuickAccessProvider, TriggerAction } from '
|
|
4
|
+
import { PickerQuickAccessProvider, TriggerAction } from 'vscode/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
5
5
|
import { prepareQuery, compareItemsByFuzzyScore, scoreItemFuzzy } from 'monaco-editor/esm/vs/base/common/fuzzyScorer.js';
|
|
6
6
|
import { QueryBuilder } from 'vscode/vscode/vs/workbench/services/search/common/queryBuilder';
|
|
7
7
|
import { IInstantiationService } from 'monaco-editor/esm/vs/platform/instantiation/common/instantiation.js';
|
|
@@ -19,7 +19,7 @@ import { ILabelService } from 'monaco-editor/esm/vs/platform/label/common/label.
|
|
|
19
19
|
import { getIconClasses } from 'monaco-editor/esm/vs/editor/common/services/getIconClasses.js';
|
|
20
20
|
import { IModelService } from 'monaco-editor/esm/vs/editor/common/services/model.js';
|
|
21
21
|
import { ILanguageService } from 'monaco-editor/esm/vs/editor/common/languages/language.js';
|
|
22
|
-
import {
|
|
22
|
+
import { localizeWithPath } from 'monaco-editor/esm/vs/nls.js';
|
|
23
23
|
import { IWorkingCopyService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService';
|
|
24
24
|
import { IConfigurationService } from 'monaco-editor/esm/vs/platform/configuration/common/configuration.js';
|
|
25
25
|
import { isEditorInput, EditorResourceAccessor } from 'vscode/vscode/vs/workbench/common/editor';
|
|
@@ -57,7 +57,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
57
57
|
static { AnythingQuickAccessProvider_1 = this; }
|
|
58
58
|
static { this.PREFIX = ''; }
|
|
59
59
|
static { this.NO_RESULTS_PICK = {
|
|
60
|
-
label: (
|
|
60
|
+
label: localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'noAnythingResults', "No matching results")
|
|
61
61
|
}; }
|
|
62
62
|
static { this.MAX_RESULTS = 512; }
|
|
63
63
|
static { this.TYPING_SEARCH_DELAY = 200; }
|
|
@@ -255,7 +255,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
255
255
|
picks.push(...this.getHelpPicks(query, token, options));
|
|
256
256
|
}
|
|
257
257
|
if (historyEditorPicks.length !== 0) {
|
|
258
|
-
picks.push({ type: 'separator', label: (
|
|
258
|
+
picks.push({ type: 'separator', label: localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'recentlyOpenedSeparator', "recently opened") });
|
|
259
259
|
picks.push(...historyEditorPicks);
|
|
260
260
|
}
|
|
261
261
|
}
|
|
@@ -273,7 +273,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
273
273
|
return [];
|
|
274
274
|
}
|
|
275
275
|
return additionalPicks.length > 0 ? [
|
|
276
|
-
{ type: 'separator', label: this.configuration.includeSymbols ? (
|
|
276
|
+
{ type: 'separator', label: this.configuration.includeSymbols ? localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'fileAndSymbolResultsSeparator', "file and symbol results") : localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'fileResultsSeparator', "file results") },
|
|
277
277
|
...additionalPicks
|
|
278
278
|
] : [];
|
|
279
279
|
})(),
|
|
@@ -523,7 +523,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
523
523
|
description: helpEntry.prefix ?? provider.prefix,
|
|
524
524
|
commandCenterOrder: helpEntry.commandCenterOrder,
|
|
525
525
|
keybinding: helpEntry.commandId ? this.keybindingService.lookupKeybinding(helpEntry.commandId) : undefined,
|
|
526
|
-
ariaLabel: (
|
|
526
|
+
ariaLabel: localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'helpPickAriaLabel', "{0}, {1}", label, helpEntry.description),
|
|
527
527
|
accept: () => {
|
|
528
528
|
this.quickInputService.quickAccess.show(provider.prefix, {
|
|
529
529
|
preserveValue: true,
|
|
@@ -534,7 +534,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
534
534
|
})));
|
|
535
535
|
if (this.quickChatService.enabled) {
|
|
536
536
|
providers.push({
|
|
537
|
-
label: (
|
|
537
|
+
label: localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'chat', "Open Quick Chat"),
|
|
538
538
|
commandCenterOrder: 30,
|
|
539
539
|
keybinding: this.keybindingService.lookupKeybinding(ASK_QUICK_QUESTION_ACTION_ID),
|
|
540
540
|
accept: () => this.quickChatService.toggle()
|
|
@@ -661,19 +661,13 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
661
661
|
buttons.push({
|
|
662
662
|
iconClass: openSideBySideDirection === 'right' ? ThemeIcon.asClassName(Codicon.splitHorizontal) : ThemeIcon.asClassName(Codicon.splitVertical),
|
|
663
663
|
tooltip: openSideBySideDirection === 'right' ?
|
|
664
|
-
(
|
|
665
|
-
|
|
666
|
-
"Open to the Side"
|
|
667
|
-
)) :
|
|
668
|
-
( localize(
|
|
669
|
-
{ key: 'openToBottom', comment: ['Open this file in a split editor on the bottom'] },
|
|
670
|
-
"Open to the Bottom"
|
|
671
|
-
))
|
|
664
|
+
localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', { key: 'openToSide', comment: ['Open this file in a split editor on the left/right side'] }, "Open to the Side") :
|
|
665
|
+
localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', { key: 'openToBottom', comment: ['Open this file in a split editor on the bottom'] }, "Open to the Bottom")
|
|
672
666
|
});
|
|
673
667
|
if (isEditorHistoryEntry) {
|
|
674
668
|
buttons.push({
|
|
675
669
|
iconClass: isDirty ? ('dirty-anything ' + ThemeIcon.asClassName(Codicon.circleFilled)) : ThemeIcon.asClassName(Codicon.close),
|
|
676
|
-
tooltip: (
|
|
670
|
+
tooltip: localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'closeEditor', "Remove from Recently Opened"),
|
|
677
671
|
alwaysVisible: isDirty
|
|
678
672
|
});
|
|
679
673
|
}
|
|
@@ -682,7 +676,7 @@ let AnythingQuickAccessProvider = class AnythingQuickAccessProvider extends Pick
|
|
|
682
676
|
return {
|
|
683
677
|
resource,
|
|
684
678
|
label,
|
|
685
|
-
ariaLabel: isDirty ? (
|
|
679
|
+
ariaLabel: isDirty ? localizeWithPath('vs/workbench/contrib/search/browser/anythingQuickAccess', 'filePickAriaLabelDirty', "{0} unsaved changes", labelAndDescription) : labelAndDescription,
|
|
686
680
|
description,
|
|
687
681
|
get iconClasses() { return iconClassesValue.value; },
|
|
688
682
|
get buttons() { return buttonsValue.value; },
|
|
@@ -26,7 +26,7 @@ let PatternInputWidget = class PatternInputWidget extends Widget {
|
|
|
26
26
|
this.onCancel = this._onCancel.event;
|
|
27
27
|
options = {
|
|
28
28
|
...{
|
|
29
|
-
ariaLabel:
|
|
29
|
+
ariaLabel: nls.localizeWithPath('vs/workbench/contrib/search/browser/patternInputWidget', 'defaultLabel', "input")
|
|
30
30
|
},
|
|
31
31
|
...options,
|
|
32
32
|
};
|
|
@@ -153,7 +153,7 @@ let IncludePatternInputWidget = class IncludePatternInputWidget extends PatternI
|
|
|
153
153
|
renderSubcontrols(controlsDiv) {
|
|
154
154
|
this.useSearchInEditorsBox = this._register(( new Toggle({
|
|
155
155
|
icon: Codicon.book,
|
|
156
|
-
title:
|
|
156
|
+
title: nls.localizeWithPath('vs/workbench/contrib/search/browser/patternInputWidget', 'onlySearchInOpenEditors', "Search only in Open Editors"),
|
|
157
157
|
isChecked: false,
|
|
158
158
|
...defaultToggleStyles
|
|
159
159
|
})));
|
|
@@ -196,10 +196,7 @@ let ExcludePatternInputWidget = class ExcludePatternInputWidget extends PatternI
|
|
|
196
196
|
this.useExcludesAndIgnoreFilesBox = this._register(( new Toggle({
|
|
197
197
|
icon: Codicon.exclude,
|
|
198
198
|
actionClassName: 'useExcludesAndIgnoreFiles',
|
|
199
|
-
title:
|
|
200
|
-
'useExcludesAndIgnoreFilesDescription',
|
|
201
|
-
"Use Exclude Settings and Ignore Files"
|
|
202
|
-
)),
|
|
199
|
+
title: nls.localizeWithPath('vs/workbench/contrib/search/browser/patternInputWidget', 'useExcludesAndIgnoreFilesDescription', "Use Exclude Settings and Ignore Files"),
|
|
203
200
|
isChecked: true,
|
|
204
201
|
...defaultToggleStyles
|
|
205
202
|
})));
|
package/vscode/src/vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess.js
CHANGED
|
@@ -3,12 +3,12 @@ import { DisposableStore } from 'monaco-editor/esm/vs/base/common/lifecycle.js';
|
|
|
3
3
|
import { ResourceSet } from 'monaco-editor/esm/vs/base/common/map.js';
|
|
4
4
|
import { basenameOrAuthority, dirname } from 'monaco-editor/esm/vs/base/common/resources.js';
|
|
5
5
|
import { ThemeIcon } from 'monaco-editor/esm/vs/base/common/themables.js';
|
|
6
|
-
import {
|
|
6
|
+
import { localizeWithPath } from 'monaco-editor/esm/vs/nls.js';
|
|
7
7
|
import { IConfigurationService } from 'monaco-editor/esm/vs/platform/configuration/common/configuration.js';
|
|
8
8
|
import { IInstantiationService } from 'monaco-editor/esm/vs/platform/instantiation/common/instantiation.js';
|
|
9
9
|
import { ILabelService } from 'monaco-editor/esm/vs/platform/label/common/label.js';
|
|
10
10
|
import { getSelectionKeyboardEvent } from 'monaco-editor/esm/vs/platform/list/browser/listService.js';
|
|
11
|
-
import { PickerQuickAccessProvider } from '
|
|
11
|
+
import { PickerQuickAccessProvider } from 'vscode/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
12
12
|
import { DefaultQuickAccessFilterValue } from 'monaco-editor/esm/vs/platform/quickinput/common/quickAccess.js';
|
|
13
13
|
import { IWorkspaceContextService } from 'monaco-editor/esm/vs/platform/workspace/common/workspace.js';
|
|
14
14
|
import { IViewsService } from 'vscode/vscode/vs/workbench/common/views';
|
|
@@ -123,7 +123,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
|
|
|
123
123
|
type: 'separator',
|
|
124
124
|
});
|
|
125
125
|
picks.push({
|
|
126
|
-
label: (
|
|
126
|
+
label: localizeWithPath('vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess', 'QuickSearchSeeMoreFiles', "See More Files"),
|
|
127
127
|
iconClass: ThemeIcon.asClassName(searchDetailsIcon),
|
|
128
128
|
accept: async () => {
|
|
129
129
|
this.moveToSearchViewlet(this.searchModel, matches[limit]);
|
|
@@ -140,7 +140,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
|
|
|
140
140
|
tooltip: description,
|
|
141
141
|
buttons: [{
|
|
142
142
|
iconClass: ThemeIcon.asClassName(searchOpenInFileIcon),
|
|
143
|
-
tooltip: (
|
|
143
|
+
tooltip: localizeWithPath('vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess', 'QuickSearchOpenInFile', "Open File")
|
|
144
144
|
}],
|
|
145
145
|
});
|
|
146
146
|
const results = fileMatch.matches() ?? [];
|
|
@@ -148,7 +148,7 @@ let TextSearchQuickAccess = class TextSearchQuickAccess extends PickerQuickAcces
|
|
|
148
148
|
const element = results[matchIndex];
|
|
149
149
|
if (matchIndex === MAX_RESULTS_PER_FILE) {
|
|
150
150
|
picks.push({
|
|
151
|
-
label: (
|
|
151
|
+
label: localizeWithPath('vs/workbench/contrib/search/browser/quickTextSearch/textSearchQuickAccess', 'QuickSearchMore', "More"),
|
|
152
152
|
iconClass: ThemeIcon.asClassName(searchDetailsIcon),
|
|
153
153
|
accept: async () => {
|
|
154
154
|
this.moveToSearchViewlet(this.searchModel, element);
|
|
@@ -84,7 +84,7 @@ ReplacePreviewModel = ( __decorate([
|
|
|
84
84
|
], ReplacePreviewModel));
|
|
85
85
|
let ReplaceService = class ReplaceService {
|
|
86
86
|
static { ReplaceService_1 = this; }
|
|
87
|
-
static { this.REPLACE_SAVE_SOURCE = SaveSourceRegistry.registerSource('searchReplace.source',
|
|
87
|
+
static { this.REPLACE_SAVE_SOURCE = SaveSourceRegistry.registerSource('searchReplace.source', nls.localizeWithPath('vs/workbench/contrib/search/browser/replaceService', 'searchReplace.source', "Search and Replace")); }
|
|
88
88
|
constructor(textFileService, editorService, textModelResolverService, bulkEditorService, labelService, notebookEditorModelResolverService) {
|
|
89
89
|
this.textFileService = textFileService;
|
|
90
90
|
this.editorService = editorService;
|
|
@@ -122,12 +122,7 @@ let ReplaceService = class ReplaceService {
|
|
|
122
122
|
const editor = await this.editorService.openEditor({
|
|
123
123
|
original: { resource: fileMatch.resource },
|
|
124
124
|
modified: { resource: toReplaceResource(fileMatch.resource) },
|
|
125
|
-
label: (
|
|
126
|
-
'fileReplaceChanges',
|
|
127
|
-
"{0} ↔ {1} (Replace Preview)",
|
|
128
|
-
fileMatch.name(),
|
|
129
|
-
fileMatch.name()
|
|
130
|
-
)),
|
|
125
|
+
label: nls.localizeWithPath('vs/workbench/contrib/search/browser/replaceService', 'fileReplaceChanges', "{0} ↔ {1} (Replace Preview)", fileMatch.name(), fileMatch.name()),
|
|
131
126
|
description: this.labelService.getUriLabel(dirname(fileMatch.resource), { relative: true }),
|
|
132
127
|
options: {
|
|
133
128
|
preserveFocus,
|