Add close to tab model

This commit is contained in:
Logan Ramos
2021-09-24 15:53:32 -04:00
parent a5832d17f9
commit 7800296d17
5 changed files with 54 additions and 0 deletions

View File

@@ -639,6 +639,7 @@ export interface ExtHostEditorInsetsShape {
export interface MainThreadEditorTabsShape extends IDisposable {
// manage tabs: move, close, rearrange etc
$moveTab(tab: IEditorTabDto, index: number, viewColumn: EditorGroupColumn): void;
$closeTab(tab: IEditorTabDto): Promise<void>;
}
export interface IEditorTabDto {