Interface NotebookCellStatusBarItemProvider

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

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

Properties

onDidChangeCellStatusBarItems?: Event<void>

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

Methods