mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Add tab kind to the tabs api
This commit is contained in:
@@ -625,6 +625,13 @@ export interface IEditorTabGroupDto {
|
||||
groupId: number;
|
||||
}
|
||||
|
||||
export enum TabKind {
|
||||
SINGULAR = 0,
|
||||
DIFF = 1,
|
||||
SIDEBYSIDE = 2,
|
||||
OTHER = 3
|
||||
}
|
||||
|
||||
export interface IEditorTabDto {
|
||||
viewColumn: EditorGroupColumn;
|
||||
label: string;
|
||||
@@ -632,6 +639,7 @@ export interface IEditorTabDto {
|
||||
editorId?: string;
|
||||
isActive: boolean;
|
||||
isDirty: boolean;
|
||||
kind: TabKind;
|
||||
additionalResourcesAndViewIds: { resource?: UriComponents; viewId?: string }[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user