We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e73b1 commit 03d6ed3Copy full SHA for 03d6ed3
src/client/repl/replCommands.ts
@@ -91,7 +91,7 @@ export async function registerReplCommands(
91
const notebookEdit = NotebookEdit.insertCells(cellCount, [notebookCellData]);
92
const workspaceEdit = new WorkspaceEdit();
93
workspaceEdit.set(notebookDocument.uri, [notebookEdit]);
94
- workspace.applyEdit(workspaceEdit);
+ await workspace.applyEdit(workspaceEdit);
95
96
// Execute the cell
97
commands.executeCommand('notebook.cell.execute', {
0 commit comments