update notebook editor view column when moving editors, https://github.com/microsoft/vscode/issues/115704

This commit is contained in:
Johannes Rieken
2021-03-31 18:09:39 +02:00
parent 407a0e3723
commit ca980ecfac
4 changed files with 49 additions and 8 deletions

View File

@@ -1917,8 +1917,11 @@ export interface ExtHostNotebookDocumentsShape {
$acceptDocumentPropertiesChanged(uriComponents: UriComponents, data: INotebookDocumentPropertiesChangeData): void;
}
export type INotebookEditorViewColumnInfo = Record<string, number>;
export interface ExtHostNotebookEditorsShape {
$acceptEditorPropertiesChanged(id: string, data: INotebookEditorPropertiesChangeData): void;
$acceptEditorViewColumns(data: INotebookEditorViewColumnInfo): void;
}
export interface ExtHostStorageShape {