We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d26aa commit ea8021bCopy full SHA for ea8021b
src/vs/workbench/contrib/notebook/browser/contrib/coreActions.ts
@@ -608,8 +608,6 @@ registerAction2(class ExecuteCellFocusContainer extends NotebookMultiCellAction<
608
}
609
610
async runWithContext(accessor: ServicesAccessor, context: INotebookActionContext): Promise<void> {
611
- await runCell(accessor, context);
612
-
613
if (context.ui && context.cell) {
614
context.notebookEditor.focusNotebookCell(context.cell, 'container', { skipReveal: true });
615
} else if (context.selectedCells) {
@@ -619,6 +617,8 @@ registerAction2(class ExecuteCellFocusContainer extends NotebookMultiCellAction<
619
617
context.notebookEditor.focusNotebookCell(firstCell, 'container', { skipReveal: true });
620
618
621
+
+ await runCell(accessor, context);
622
623
});
624
0 commit comments