@codingame/monaco-vscode-notebook-service-override 11.0.2 → 11.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-notebook-service-override",
|
|
3
|
-
"version": "11.0
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"vscode": "npm:@codingame/monaco-vscode-api@11.0
|
|
33
|
-
"@codingame/monaco-vscode-chat-notebook-common": "11.0
|
|
34
|
-
"@codingame/monaco-vscode-chat-interactive-notebook-search-common": "11.0
|
|
35
|
-
"@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common": "11.0
|
|
36
|
-
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0
|
|
37
|
-
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.0
|
|
38
|
-
"@codingame/monaco-vscode-debug-notebook-common": "11.0
|
|
32
|
+
"vscode": "npm:@codingame/monaco-vscode-api@11.1.0",
|
|
33
|
+
"@codingame/monaco-vscode-chat-notebook-common": "11.1.0",
|
|
34
|
+
"@codingame/monaco-vscode-chat-interactive-notebook-search-common": "11.1.0",
|
|
35
|
+
"@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common": "11.1.0",
|
|
36
|
+
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.1.0",
|
|
37
|
+
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.1.0",
|
|
38
|
+
"@codingame/monaco-vscode-debug-notebook-common": "11.1.0"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js
CHANGED
|
@@ -24,7 +24,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
24
24
|
constructor() {
|
|
25
25
|
super({
|
|
26
26
|
id: MOVE_CELL_UP_COMMAND_ID,
|
|
27
|
-
title: ( localize2(
|
|
27
|
+
title: ( localize2(8176, "Move Cell Up")),
|
|
28
28
|
icon: moveUpIcon,
|
|
29
29
|
keybinding: {
|
|
30
30
|
primary: 512 | 16 ,
|
|
@@ -47,7 +47,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
47
47
|
constructor() {
|
|
48
48
|
super({
|
|
49
49
|
id: MOVE_CELL_DOWN_COMMAND_ID,
|
|
50
|
-
title: ( localize2(
|
|
50
|
+
title: ( localize2(8177, "Move Cell Down")),
|
|
51
51
|
icon: moveDownIcon,
|
|
52
52
|
keybinding: {
|
|
53
53
|
primary: 512 | 18 ,
|
|
@@ -70,7 +70,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
70
70
|
constructor() {
|
|
71
71
|
super({
|
|
72
72
|
id: COPY_CELL_UP_COMMAND_ID,
|
|
73
|
-
title: ( localize2(
|
|
73
|
+
title: ( localize2(8178, "Copy Cell Up")),
|
|
74
74
|
keybinding: {
|
|
75
75
|
primary: 512 | 1024 | 16 ,
|
|
76
76
|
when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, (InputFocusedContext.toNegated())))),
|
|
@@ -86,7 +86,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
86
86
|
constructor() {
|
|
87
87
|
super({
|
|
88
88
|
id: COPY_CELL_DOWN_COMMAND_ID,
|
|
89
|
-
title: ( localize2(
|
|
89
|
+
title: ( localize2(8179, "Copy Cell Down")),
|
|
90
90
|
keybinding: {
|
|
91
91
|
primary: 512 | 1024 | 18 ,
|
|
92
92
|
when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, (InputFocusedContext.toNegated())))),
|
|
@@ -112,7 +112,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
112
112
|
constructor() {
|
|
113
113
|
super({
|
|
114
114
|
id: SPLIT_CELL_COMMAND_ID,
|
|
115
|
-
title: ( localize2(
|
|
115
|
+
title: ( localize2(8180, "Split Cell")),
|
|
116
116
|
menu: {
|
|
117
117
|
id: MenuId.NotebookCellTitle,
|
|
118
118
|
when: ( (ContextKeyExpr.and(
|
|
@@ -182,7 +182,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
182
182
|
constructor() {
|
|
183
183
|
super({
|
|
184
184
|
id: JOIN_CELL_ABOVE_COMMAND_ID,
|
|
185
|
-
title: ( localize2(
|
|
185
|
+
title: ( localize2(8181, "Join With Previous Cell")),
|
|
186
186
|
keybinding: {
|
|
187
187
|
when: NOTEBOOK_EDITOR_FOCUSED,
|
|
188
188
|
primary: 256 | 512 | 1024 | 40 ,
|
|
@@ -205,7 +205,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
205
205
|
constructor() {
|
|
206
206
|
super({
|
|
207
207
|
id: JOIN_CELL_BELOW_COMMAND_ID,
|
|
208
|
-
title: ( localize2(
|
|
208
|
+
title: ( localize2(8182, "Join With Next Cell")),
|
|
209
209
|
keybinding: {
|
|
210
210
|
when: NOTEBOOK_EDITOR_FOCUSED,
|
|
211
211
|
primary: 256 | 512 | 40 ,
|
|
@@ -228,7 +228,7 @@ registerAction2(class extends NotebookCellAction {
|
|
|
228
228
|
constructor() {
|
|
229
229
|
super({
|
|
230
230
|
id: JOIN_SELECTED_CELLS_COMMAND_ID,
|
|
231
|
-
title: ( localize2(
|
|
231
|
+
title: ( localize2(8183, "Join Selected Cells")),
|
|
232
232
|
menu: {
|
|
233
233
|
id: MenuId.NotebookCellTitle,
|
|
234
234
|
when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE))),
|
|
@@ -249,7 +249,7 @@ registerAction2(class ChangeCellToCodeAction extends NotebookMultiCellAction {
|
|
|
249
249
|
constructor() {
|
|
250
250
|
super({
|
|
251
251
|
id: CHANGE_CELL_TO_CODE_COMMAND_ID,
|
|
252
|
-
title: ( localize2(
|
|
252
|
+
title: ( localize2(8184, "Change Cell to Code")),
|
|
253
253
|
keybinding: {
|
|
254
254
|
when: ( (ContextKeyExpr.and(
|
|
255
255
|
NOTEBOOK_EDITOR_FOCUSED,
|
|
@@ -283,7 +283,7 @@ registerAction2(class ChangeCellToMarkdownAction extends NotebookMultiCellAction
|
|
|
283
283
|
constructor() {
|
|
284
284
|
super({
|
|
285
285
|
id: CHANGE_CELL_TO_MARKDOWN_COMMAND_ID,
|
|
286
|
-
title: ( localize2(
|
|
286
|
+
title: ( localize2(8185, "Change Cell to Markdown")),
|
|
287
287
|
keybinding: {
|
|
288
288
|
when: ( (ContextKeyExpr.and(
|
|
289
289
|
NOTEBOOK_EDITOR_FOCUSED,
|
|
@@ -325,7 +325,7 @@ registerAction2(class CollapseCellInputAction extends NotebookMultiCellAction {
|
|
|
325
325
|
constructor() {
|
|
326
326
|
super({
|
|
327
327
|
id: COLLAPSE_CELL_INPUT_COMMAND_ID,
|
|
328
|
-
title: ( localize2(
|
|
328
|
+
title: ( localize2(8186, "Collapse Cell Input")),
|
|
329
329
|
keybinding: {
|
|
330
330
|
when: ( (ContextKeyExpr.and(
|
|
331
331
|
NOTEBOOK_CELL_LIST_FOCUSED,
|
|
@@ -353,7 +353,7 @@ registerAction2(class ExpandCellInputAction extends NotebookMultiCellAction {
|
|
|
353
353
|
constructor() {
|
|
354
354
|
super({
|
|
355
355
|
id: EXPAND_CELL_INPUT_COMMAND_ID,
|
|
356
|
-
title: ( localize2(
|
|
356
|
+
title: ( localize2(8187, "Expand Cell Input")),
|
|
357
357
|
keybinding: {
|
|
358
358
|
when: ( (ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_CELL_INPUT_COLLAPSED))),
|
|
359
359
|
primary: KeyChord(2048 | 41 , 2048 | 33 ),
|
|
@@ -377,7 +377,7 @@ registerAction2(class CollapseCellOutputAction extends NotebookMultiCellAction {
|
|
|
377
377
|
constructor() {
|
|
378
378
|
super({
|
|
379
379
|
id: COLLAPSE_CELL_OUTPUT_COMMAND_ID,
|
|
380
|
-
title: ( localize2(
|
|
380
|
+
title: ( localize2(8188, "Collapse Cell Output")),
|
|
381
381
|
keybinding: {
|
|
382
382
|
when: ( (ContextKeyExpr.and(
|
|
383
383
|
NOTEBOOK_CELL_LIST_FOCUSED,
|
|
@@ -403,7 +403,7 @@ registerAction2(class ExpandCellOuputAction extends NotebookMultiCellAction {
|
|
|
403
403
|
constructor() {
|
|
404
404
|
super({
|
|
405
405
|
id: EXPAND_CELL_OUTPUT_COMMAND_ID,
|
|
406
|
-
title: ( localize2(
|
|
406
|
+
title: ( localize2(8189, "Expand Cell Output")),
|
|
407
407
|
keybinding: {
|
|
408
408
|
when: ( (ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_CELL_OUTPUT_COLLAPSED))),
|
|
409
409
|
primary: KeyChord(2048 | 41 , 50 ),
|
|
@@ -425,9 +425,9 @@ registerAction2(class extends NotebookMultiCellAction {
|
|
|
425
425
|
super({
|
|
426
426
|
id: TOGGLE_CELL_OUTPUTS_COMMAND_ID,
|
|
427
427
|
precondition: NOTEBOOK_CELL_LIST_FOCUSED,
|
|
428
|
-
title: ( localize2(
|
|
428
|
+
title: ( localize2(8190, "Toggle Outputs")),
|
|
429
429
|
metadata: {
|
|
430
|
-
description: ( localize(
|
|
430
|
+
description: ( localize(8190, "Toggle Outputs")),
|
|
431
431
|
args: cellExecutionArgs
|
|
432
432
|
}
|
|
433
433
|
});
|
|
@@ -452,7 +452,7 @@ registerAction2(class CollapseAllCellInputsAction extends NotebookMultiCellActio
|
|
|
452
452
|
constructor() {
|
|
453
453
|
super({
|
|
454
454
|
id: COLLAPSE_ALL_CELL_INPUTS_COMMAND_ID,
|
|
455
|
-
title: ( localize2(
|
|
455
|
+
title: ( localize2(8191, "Collapse All Cell Inputs")),
|
|
456
456
|
f1: true,
|
|
457
457
|
});
|
|
458
458
|
}
|
|
@@ -464,7 +464,7 @@ registerAction2(class ExpandAllCellInputsAction extends NotebookMultiCellAction
|
|
|
464
464
|
constructor() {
|
|
465
465
|
super({
|
|
466
466
|
id: EXPAND_ALL_CELL_INPUTS_COMMAND_ID,
|
|
467
|
-
title: ( localize2(
|
|
467
|
+
title: ( localize2(8192, "Expand All Cell Inputs")),
|
|
468
468
|
f1: true
|
|
469
469
|
});
|
|
470
470
|
}
|
|
@@ -476,7 +476,7 @@ registerAction2(class CollapseAllCellOutputsAction extends NotebookMultiCellActi
|
|
|
476
476
|
constructor() {
|
|
477
477
|
super({
|
|
478
478
|
id: COLLAPSE_ALL_CELL_OUTPUTS_COMMAND_ID,
|
|
479
|
-
title: ( localize2(
|
|
479
|
+
title: ( localize2(8193, "Collapse All Cell Outputs")),
|
|
480
480
|
f1: true,
|
|
481
481
|
});
|
|
482
482
|
}
|
|
@@ -488,7 +488,7 @@ registerAction2(class ExpandAllCellOutputsAction extends NotebookMultiCellAction
|
|
|
488
488
|
constructor() {
|
|
489
489
|
super({
|
|
490
490
|
id: EXPAND_ALL_CELL_OUTPUTS_COMMAND_ID,
|
|
491
|
-
title: ( localize2(
|
|
491
|
+
title: ( localize2(8194, "Expand All Cell Outputs")),
|
|
492
492
|
f1: true
|
|
493
493
|
});
|
|
494
494
|
}
|
|
@@ -500,7 +500,7 @@ registerAction2(class ToggleCellOutputScrolling extends NotebookMultiCellAction
|
|
|
500
500
|
constructor() {
|
|
501
501
|
super({
|
|
502
502
|
id: TOGGLE_CELL_OUTPUT_SCROLLING,
|
|
503
|
-
title: ( localize2(
|
|
503
|
+
title: ( localize2(8195, "Toggle Scroll Cell Output")),
|
|
504
504
|
keybinding: {
|
|
505
505
|
when: ( (ContextKeyExpr.and(
|
|
506
506
|
NOTEBOOK_CELL_LIST_FOCUSED,
|
|
@@ -93,7 +93,7 @@ registerAction2(class extends Action2 {
|
|
|
93
93
|
constructor() {
|
|
94
94
|
super({
|
|
95
95
|
id: 'notebook.toggleLayoutTroubleshoot',
|
|
96
|
-
title: ( localize2(
|
|
96
|
+
title: ( localize2(8196, "Toggle Layout Troubleshoot")),
|
|
97
97
|
category: Categories.Developer,
|
|
98
98
|
f1: true
|
|
99
99
|
});
|
|
@@ -112,7 +112,7 @@ registerAction2(class extends Action2 {
|
|
|
112
112
|
constructor() {
|
|
113
113
|
super({
|
|
114
114
|
id: 'notebook.inspectLayout',
|
|
115
|
-
title: ( localize2(
|
|
115
|
+
title: ( localize2(8197, "Inspect Notebook Layout")),
|
|
116
116
|
category: Categories.Developer,
|
|
117
117
|
f1: true
|
|
118
118
|
});
|
|
@@ -133,7 +133,7 @@ registerAction2(class extends Action2 {
|
|
|
133
133
|
constructor() {
|
|
134
134
|
super({
|
|
135
135
|
id: 'notebook.clearNotebookEdtitorTypeCache',
|
|
136
|
-
title: ( localize2(
|
|
136
|
+
title: ( localize2(8198, "Clear Notebook Editor Type Cache")),
|
|
137
137
|
category: Categories.Developer,
|
|
138
138
|
f1: true
|
|
139
139
|
});
|