Remove MenuItemActions to simplify action registration code

This commit is contained in:
Rob Lourens
2020-03-20 18:58:02 -07:00
parent a0d07dcf6e
commit 2b64615227
11 changed files with 130 additions and 327 deletions

View File

@@ -580,7 +580,7 @@ export class ExtHostNotebookController implements ExtHostNotebookShape, ExtHostN
let editor = this._editors.get(URI.revive(uri).toString());
let document = this._documents.get(URI.revive(uri).toString());
let rawCell = editor?.editor.createCell('', language, type, [], undefined) as ExtHostCell;
let rawCell = editor?.editor.createCell('', language, type, [], { editable: true }) as ExtHostCell;
document?.insertCell(index, rawCell!);
let allDocuments = this._documentsAndEditors.allDocuments();