@@ -508,7 +508,7 @@ registerAction2(class ExecuteCellInsertBelow extends NotebookCellAction {
508
508
}
509
509
} ) ;
510
510
511
- registerAction2 ( class extends NotebookAction {
511
+ registerAction2 ( class RenderAllMarkdownCellsAction extends NotebookAction {
512
512
constructor ( ) {
513
513
super ( {
514
514
id : RENDER_ALL_MARKDOWN_CELLS ,
@@ -521,7 +521,7 @@ registerAction2(class extends NotebookAction {
521
521
}
522
522
} ) ;
523
523
524
- registerAction2 ( class extends NotebookAction {
524
+ registerAction2 ( class ExecuteNotebookAction extends NotebookAction {
525
525
constructor ( ) {
526
526
super ( {
527
527
id : EXECUTE_NOTEBOOK_COMMAND_ID ,
@@ -623,7 +623,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorContext, {
623
623
when : NOTEBOOK_EDITOR_FOCUSED
624
624
} ) ;
625
625
626
- registerAction2 ( class extends NotebookCellAction {
626
+ registerAction2 ( class ChangeCellToCodeAction extends NotebookCellAction {
627
627
constructor ( ) {
628
628
super ( {
629
629
id : CHANGE_CELL_TO_CODE_COMMAND_ID ,
@@ -647,7 +647,7 @@ registerAction2(class extends NotebookCellAction {
647
647
}
648
648
} ) ;
649
649
650
- registerAction2 ( class extends NotebookCellAction {
650
+ registerAction2 ( class ChangeCellToMarkdownAction extends NotebookCellAction {
651
651
constructor ( ) {
652
652
super ( {
653
653
id : CHANGE_CELL_TO_MARKDOWN_COMMAND_ID ,
@@ -755,7 +755,7 @@ abstract class InsertCellCommand extends NotebookAction {
755
755
}
756
756
}
757
757
758
- registerAction2 ( class extends InsertCellCommand {
758
+ registerAction2 ( class InsertCodeCellAboveAction extends InsertCellCommand {
759
759
constructor ( ) {
760
760
super (
761
761
{
@@ -776,7 +776,7 @@ registerAction2(class extends InsertCellCommand {
776
776
}
777
777
} ) ;
778
778
779
- registerAction2 ( class extends InsertCellCommand {
779
+ registerAction2 ( class InsertCodeCellBelowAction extends InsertCellCommand {
780
780
constructor ( ) {
781
781
super (
782
782
{
@@ -797,7 +797,7 @@ registerAction2(class extends InsertCellCommand {
797
797
}
798
798
} ) ;
799
799
800
- registerAction2 ( class extends NotebookAction {
800
+ registerAction2 ( class InsertCodeCellAtTopAction extends NotebookAction {
801
801
constructor ( ) {
802
802
super (
803
803
{
@@ -822,7 +822,7 @@ registerAction2(class extends NotebookAction {
822
822
}
823
823
} ) ;
824
824
825
- registerAction2 ( class extends NotebookAction {
825
+ registerAction2 ( class InsertMarkdownCellAtTopAction extends NotebookAction {
826
826
constructor ( ) {
827
827
super (
828
828
{
@@ -869,7 +869,7 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
869
869
when : NOTEBOOK_EDITOR_EDITABLE . isEqualTo ( true )
870
870
} ) ;
871
871
872
- registerAction2 ( class extends InsertCellCommand {
872
+ registerAction2 ( class InsertMarkdownCellAboveAction extends InsertCellCommand {
873
873
constructor ( ) {
874
874
super (
875
875
{
@@ -885,7 +885,7 @@ registerAction2(class extends InsertCellCommand {
885
885
}
886
886
} ) ;
887
887
888
- registerAction2 ( class extends InsertCellCommand {
888
+ registerAction2 ( class InsertMarkdownCellBelowAction extends InsertCellCommand {
889
889
constructor ( ) {
890
890
super (
891
891
{
@@ -923,7 +923,7 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
923
923
when : NOTEBOOK_EDITOR_EDITABLE . isEqualTo ( true )
924
924
} ) ;
925
925
926
- registerAction2 ( class extends NotebookCellAction {
926
+ registerAction2 ( class EditCellAction extends NotebookCellAction {
927
927
constructor ( ) {
928
928
super (
929
929
{
@@ -952,7 +952,7 @@ registerAction2(class extends NotebookCellAction {
952
952
}
953
953
} ) ;
954
954
955
- registerAction2 ( class extends NotebookCellAction {
955
+ registerAction2 ( class QuitEditCellAction extends NotebookCellAction {
956
956
constructor ( ) {
957
957
super (
958
958
{
@@ -1054,7 +1054,7 @@ export function runDeleteAction(viewModel: NotebookViewModel, cell: ICellViewMod
1054
1054
}
1055
1055
}
1056
1056
1057
- registerAction2 ( class extends NotebookCellAction {
1057
+ registerAction2 ( class DeleteCellAction extends NotebookCellAction {
1058
1058
constructor ( ) {
1059
1059
super (
1060
1060
{
@@ -1086,7 +1086,7 @@ registerAction2(class extends NotebookCellAction {
1086
1086
}
1087
1087
} ) ;
1088
1088
1089
- registerAction2 ( class extends NotebookCellAction {
1089
+ registerAction2 ( class ClearCellOutputsAction extends NotebookCellAction {
1090
1090
constructor ( ) {
1091
1091
super ( {
1092
1092
id : CLEAR_CELL_OUTPUTS_COMMAND_ID ,
@@ -1308,7 +1308,7 @@ registerAction2(class ChangeCellLanguageAction extends NotebookCellAction<ICellR
1308
1308
}
1309
1309
} ) ;
1310
1310
1311
- registerAction2 ( class extends NotebookAction {
1311
+ registerAction2 ( class ClearAllCellOutputsAction extends NotebookAction {
1312
1312
constructor ( ) {
1313
1313
super ( {
1314
1314
id : CLEAR_ALL_CELLS_OUTPUTS_COMMAND_ID ,
@@ -1357,7 +1357,7 @@ registerAction2(class extends NotebookAction {
1357
1357
}
1358
1358
} ) ;
1359
1359
1360
- registerAction2 ( class extends NotebookCellAction {
1360
+ registerAction2 ( class CenterActiveCellAction extends NotebookCellAction {
1361
1361
constructor ( ) {
1362
1362
super ( {
1363
1363
id : CENTER_ACTIVE_CELL ,
@@ -1401,7 +1401,7 @@ abstract class ChangeNotebookCellMetadataAction extends NotebookCellAction {
1401
1401
abstract getMetadataDelta ( ) : NotebookCellMetadata ;
1402
1402
}
1403
1403
1404
- registerAction2 ( class extends ChangeNotebookCellMetadataAction {
1404
+ registerAction2 ( class CollapseCellInputAction extends ChangeNotebookCellMetadataAction {
1405
1405
constructor ( ) {
1406
1406
super ( {
1407
1407
id : COLLAPSE_CELL_INPUT_COMMAND_ID ,
@@ -1424,7 +1424,7 @@ registerAction2(class extends ChangeNotebookCellMetadataAction {
1424
1424
}
1425
1425
} ) ;
1426
1426
1427
- registerAction2 ( class extends ChangeNotebookCellMetadataAction {
1427
+ registerAction2 ( class ExpandCellInputAction extends ChangeNotebookCellMetadataAction {
1428
1428
constructor ( ) {
1429
1429
super ( {
1430
1430
id : EXPAND_CELL_INPUT_COMMAND_ID ,
@@ -1447,7 +1447,7 @@ registerAction2(class extends ChangeNotebookCellMetadataAction {
1447
1447
}
1448
1448
} ) ;
1449
1449
1450
- registerAction2 ( class extends ChangeNotebookCellMetadataAction {
1450
+ registerAction2 ( class CollapseCellOutputAction extends ChangeNotebookCellMetadataAction {
1451
1451
constructor ( ) {
1452
1452
super ( {
1453
1453
id : COLLAPSE_CELL_OUTPUT_COMMAND_ID ,
@@ -1470,7 +1470,7 @@ registerAction2(class extends ChangeNotebookCellMetadataAction {
1470
1470
}
1471
1471
} ) ;
1472
1472
1473
- registerAction2 ( class extends ChangeNotebookCellMetadataAction {
1473
+ registerAction2 ( class ExpandCellOuputAction extends ChangeNotebookCellMetadataAction {
1474
1474
constructor ( ) {
1475
1475
super ( {
1476
1476
id : EXPAND_CELL_OUTPUT_COMMAND_ID ,
0 commit comments