mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
let -> const, notebooks
This commit is contained in:
@@ -63,7 +63,7 @@ export function activate(context: vscode.ExtensionContext): any {
|
||||
context.subscriptions.push(vscode.notebook.registerNotebookKernel('notebookKernelTest', ['*.vsctestnb'], {
|
||||
label: 'Notebook Test Kernel',
|
||||
executeAllCells: async (_document: vscode.NotebookDocument) => {
|
||||
let cell = _document.cells[0];
|
||||
const cell = _document.cells[0];
|
||||
|
||||
cell.outputs = [{
|
||||
outputKind: vscode.CellOutputKind.Rich,
|
||||
|
||||
Reference in New Issue
Block a user