@codingame/monaco-vscode-search-service-override 10.1.3 → 10.1.4
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.
|
|
3
|
+
"version": "10.1.4",
|
|
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.
|
|
32
|
+
"vscode": "npm:@codingame/monaco-vscode-api@10.1.4"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -11,7 +11,7 @@ registerAction2(class TextSearchQuickAccessAction extends Action2 {
|
|
|
11
11
|
constructor() {
|
|
12
12
|
super({
|
|
13
13
|
id: "workbench.action.quickTextSearch" ,
|
|
14
|
-
title: ( localize2(
|
|
14
|
+
title: ( localize2(8543, "Quick Search")),
|
|
15
15
|
category,
|
|
16
16
|
f1: true
|
|
17
17
|
});
|
|
@@ -15,7 +15,7 @@ registerAction2(class ClearSearchHistoryCommandAction extends Action2 {
|
|
|
15
15
|
constructor() {
|
|
16
16
|
super({
|
|
17
17
|
id: "search.action.clearHistory" ,
|
|
18
|
-
title: ( localize2(
|
|
18
|
+
title: ( localize2(8535, "Clear Search History")),
|
|
19
19
|
category,
|
|
20
20
|
f1: true
|
|
21
21
|
});
|
|
@@ -28,7 +28,7 @@ registerAction2(class CancelSearchAction extends Action2 {
|
|
|
28
28
|
constructor() {
|
|
29
29
|
super({
|
|
30
30
|
id: "search.action.cancel" ,
|
|
31
|
-
title: ( localize2(
|
|
31
|
+
title: ( localize2(8536, "Cancel Search")),
|
|
32
32
|
icon: searchStopIcon,
|
|
33
33
|
category,
|
|
34
34
|
f1: true,
|
|
@@ -57,7 +57,7 @@ registerAction2(class RefreshAction extends Action2 {
|
|
|
57
57
|
constructor() {
|
|
58
58
|
super({
|
|
59
59
|
id: "search.action.refreshSearchResults" ,
|
|
60
|
-
title: ( localize2(
|
|
60
|
+
title: ( localize2(8537, "Refresh")),
|
|
61
61
|
icon: searchRefreshIcon,
|
|
62
62
|
precondition: SearchContext.ViewHasSearchPatternKey,
|
|
63
63
|
category,
|
|
@@ -81,7 +81,7 @@ registerAction2(class CollapseDeepestExpandedLevelAction extends Action2 {
|
|
|
81
81
|
constructor() {
|
|
82
82
|
super({
|
|
83
83
|
id: "search.action.collapseSearchResults" ,
|
|
84
|
-
title: ( localize2(
|
|
84
|
+
title: ( localize2(8538, "Collapse All")),
|
|
85
85
|
category,
|
|
86
86
|
icon: searchCollapseAllIcon,
|
|
87
87
|
f1: true,
|
|
@@ -108,7 +108,7 @@ registerAction2(class ExpandAllAction extends Action2 {
|
|
|
108
108
|
constructor() {
|
|
109
109
|
super({
|
|
110
110
|
id: "search.action.expandSearchResults" ,
|
|
111
|
-
title: ( localize2(
|
|
111
|
+
title: ( localize2(8539, "Expand All")),
|
|
112
112
|
category,
|
|
113
113
|
icon: searchExpandAllIcon,
|
|
114
114
|
f1: true,
|
|
@@ -136,7 +136,7 @@ registerAction2(class ClearSearchResultsAction extends Action2 {
|
|
|
136
136
|
constructor() {
|
|
137
137
|
super({
|
|
138
138
|
id: "search.action.clearSearchResults" ,
|
|
139
|
-
title: ( localize2(
|
|
139
|
+
title: ( localize2(8540, "Clear Search Results")),
|
|
140
140
|
category,
|
|
141
141
|
icon: searchClearIcon,
|
|
142
142
|
f1: true,
|
|
@@ -162,7 +162,7 @@ registerAction2(class ViewAsTreeAction extends Action2 {
|
|
|
162
162
|
constructor() {
|
|
163
163
|
super({
|
|
164
164
|
id: "search.action.viewAsTree" ,
|
|
165
|
-
title: ( localize2(
|
|
165
|
+
title: ( localize2(8541, "View as Tree")),
|
|
166
166
|
category,
|
|
167
167
|
icon: searchShowAsList,
|
|
168
168
|
f1: true,
|
|
@@ -192,7 +192,7 @@ registerAction2(class ViewAsListAction extends Action2 {
|
|
|
192
192
|
constructor() {
|
|
193
193
|
super({
|
|
194
194
|
id: "search.action.viewAsList" ,
|
|
195
|
-
title: ( localize2(
|
|
195
|
+
title: ( localize2(8542, "View as List")),
|
|
196
196
|
category,
|
|
197
197
|
icon: searchShowAsTree,
|
|
198
198
|
f1: true,
|