@jrieken @roblourens
- VSCode Version: 1.49.0-insider (user setup)
- OS Version: Win 10.0.19041
using the api
const cellIndex = document.cells.findIndex(c => c === cell);
if (cellIndex >= 0) {
const edit = new vscode.WorkspaceEdit();
edit.replaceCellMetadata(document.uri, cellIndex, metadata);
vscode.workspace.applyEdit(edit);
}
doesn't update after first usage