mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
map handles to cellrange in UI.
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user