mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Fixes #44424: Add proposed API - TextEditor.visibleRanges
This commit is contained in:
@@ -508,6 +508,7 @@ export interface ITextEditorAddData {
|
||||
documentUri: UriComponents;
|
||||
options: IResolvedTextEditorConfiguration;
|
||||
selections: ISelection[];
|
||||
visibleRanges: IRange[];
|
||||
editorPosition: EditorPosition;
|
||||
}
|
||||
export interface ITextEditorPositionData {
|
||||
@@ -516,6 +517,7 @@ export interface ITextEditorPositionData {
|
||||
export interface IEditorPropertiesChangeData {
|
||||
options: IResolvedTextEditorConfiguration | null;
|
||||
selections: ISelectionChangeEvent | null;
|
||||
visibleRanges: IRange[] | null;
|
||||
}
|
||||
export interface ISelectionChangeEvent {
|
||||
selections: Selection[];
|
||||
|
||||
Reference in New Issue
Block a user