Skip to content

Commit cac92ff

Browse files
committed
Remove cell move arrow actions
1 parent 8409851 commit cac92ff

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

src/vs/workbench/contrib/notebook/browser/contrib/notebookActions.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -738,16 +738,6 @@ registerAction2(class extends Action2 {
738738
title: localize('notebookActions.moveCellUp', "Move Cell Up"),
739739
category: NOTEBOOK_ACTIONS_CATEGORY,
740740
icon: { id: 'codicon/arrow-up' },
741-
menu: {
742-
id: MenuId.NotebookCellTitle,
743-
order: CellToolbarOrder.MoveCellUp,
744-
alt: {
745-
id: COPY_CELL_UP_COMMAND_ID,
746-
title: localize('notebookActions.copyCellUp', "Copy Cell Up"),
747-
icon: { id: 'codicon/arrow-up' }
748-
},
749-
when: ContextKeyExpr.equals(NOTEBOOK_EDITABLE_CONTEXT_KEY, true)
750-
},
751741
f1: true
752742
});
753743
}
@@ -772,16 +762,6 @@ registerAction2(class extends Action2 {
772762
title: localize('notebookActions.moveCellDown', "Move Cell Down"),
773763
category: NOTEBOOK_ACTIONS_CATEGORY,
774764
icon: { id: 'codicon/arrow-down' },
775-
menu: {
776-
id: MenuId.NotebookCellTitle,
777-
order: CellToolbarOrder.MoveCellDown,
778-
alt: {
779-
id: COPY_CELL_DOWN_COMMAND_ID,
780-
title: localize('notebookActions.copyCellDown', "Copy Cell Down"),
781-
icon: { id: 'codicon/arrow-down' }
782-
},
783-
when: ContextKeyExpr.equals(NOTEBOOK_EDITABLE_CONTEXT_KEY, true)
784-
},
785765
f1: true
786766
});
787767
}

0 commit comments

Comments
 (0)