rename NotebookCellExecutionTask to NotebookCellExecution

This commit is contained in:
Johannes Rieken
2021-05-27 12:14:20 +02:00
parent 23fb420737
commit 9d907212ba
5 changed files with 27 additions and 26 deletions

View File

@@ -66,7 +66,7 @@ export function activate(context: vscode.ExtensionContext): any {
controller.executeHandler = (cells) => {
for (const cell of cells) {
const task = controller.createNotebookCellExecutionTask(cell);
const task = controller.createNotebookCellExecution(cell);
task.start();
task.replaceOutput([new vscode.NotebookCellOutput([
vscode.NotebookCellOutputItem.text('test output', 'text/html', undefined)