tabs - move move into TabGroups

This commit is contained in:
Johannes
2022-03-18 14:27:37 +01:00
parent 897c851383
commit c385364f5d
5 changed files with 27 additions and 22 deletions

View File

@@ -657,7 +657,7 @@ export type AnyInputDto = UnknownInputDto | TextInputDto | TextDiffInputDto | No
export interface MainThreadEditorTabsShape extends IDisposable {
// manage tabs: move, close, rearrange etc
$moveTab(tabId: string, index: number, viewColumn: EditorGroupColumn): void;
$moveTab(tabId: string, index: number, viewColumn: EditorGroupColumn, preserveFocus?: boolean): void;
$closeTab(tabIds: string[], preserveFocus?: boolean): Promise<void>;
}