map handles to cellrange in UI.

This commit is contained in:
rebornix
2021-02-21 22:24:20 -08:00
parent 1e0adc0da5
commit dea95d3e4f
15 changed files with 238 additions and 83 deletions

View File

@@ -1744,7 +1744,7 @@ export interface ExtHostCommentsShape {
export interface INotebookSelectionChangeEvent {
primary: number | null;
// handles
selections: number[];
selections: ICellRange[];
}
export interface INotebookVisibleRangesEvent {
@@ -1772,7 +1772,8 @@ export interface INotebookModelAddedData {
export interface INotebookEditorAddData {
id: string;
documentUri: UriComponents;
selections: number[];
primary: number | null;
selections: ICellRange[];
visibleRanges: ICellRange[];
}