Theia API Documentation v1.65.0
    Preparing search index...

    A provider that can contribute items to the status bar that appears below a cell's editor.

    interface NotebookCellStatusBarItemProvider {
        onDidChangeCellStatusBarItems?: Event<void>;
        provideCellStatusBarItems(
            cell: NotebookCell,
            token: CancellationToken,
        ): ProviderResult<NotebookCellStatusBarItem | NotebookCellStatusBarItem[]>;
    }
    Index

    Properties

    onDidChangeCellStatusBarItems?: Event<void>

    An optional event to signal that statusbar items have changed. The provide method will be called again.

    Methods