Implement notebook cell status bar

This commit is contained in:
Rob Lourens
2020-04-14 21:12:33 -05:00
parent e31bbff8a8
commit 989bbcc97e
11 changed files with 141 additions and 38 deletions

View File

@@ -1038,6 +1038,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
TimelineItem: extHostTypes.TimelineItem,
CellKind: extHostTypes.CellKind,
CellOutputKind: extHostTypes.CellOutputKind,
NotebookCellRunState: extHostTypes.NotebookCellRunState
};
};
}

View File

@@ -2713,6 +2713,13 @@ export enum CellOutputKind {
Rich = 3
}
export enum NotebookCellRunState {
Running = 1,
Idle = 2,
Success = 3,
Error = 4
}
//#endregion
//#region Timeline