Add active editor to editor tabs and use in variable resolver (#123450)

This commit is contained in:
Alex Ross
2021-05-11 01:47:28 -07:00
committed by GitHub
parent 102b3b410e
commit f41b6e6d81
10 changed files with 68 additions and 27 deletions

View File

@@ -622,7 +622,8 @@ export interface MainThreadEditorTabsShape extends IDisposable {
export interface IEditorTabDto {
group: number;
name: string;
resource: UriComponents
resource: UriComponents;
isActive: boolean;
}
export interface IExtHostEditorTabsShape {