This commit is contained in:
Logan Ramos
2022-03-28 14:36:35 -04:00
parent fd7f35aa4c
commit 64f37bc300
5 changed files with 13 additions and 7 deletions

View File

@@ -219,8 +219,7 @@ export class ExtHostEditorTabs implements IExtHostEditorTabs {
}
extHostTabIds.push(extHostTab.tabId);
}
this._proxy.$closeTab(extHostTabIds, preserveFocus);
return;
return this._proxy.$closeTab(extHostTabIds, preserveFocus);
},
move: async (tab: vscode.Tab, viewColumn: ViewColumn, index: number, preservceFocus?: boolean) => {
const extHostTab = this._findExtHostTabFromApi(tab);