Merge pull request #117204 from microsoft/rebornix/nb-selections

Notebook selections/CellRange
This commit is contained in:
Peng Lyu
2021-02-22 16:25:10 -07:00
committed by GitHub
27 changed files with 403 additions and 192 deletions

View File

@@ -1742,8 +1742,7 @@ export interface ExtHostCommentsShape {
}
export interface INotebookSelectionChangeEvent {
// handles
selections: number[];
selections: ICellRange[];
}
export interface INotebookVisibleRangesEvent {
@@ -1771,7 +1770,7 @@ export interface INotebookModelAddedData {
export interface INotebookEditorAddData {
id: string;
documentUri: UriComponents;
selections: number[];
selections: ICellRange[];
visibleRanges: ICellRange[];
}