Tabs API renaming

This commit is contained in:
Logan Ramos
2022-03-21 13:35:26 -04:00
parent 75be49700c
commit a2d8edb83d
8 changed files with 70 additions and 73 deletions

View File

@@ -1333,11 +1333,11 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
LanguageStatusSeverity: extHostTypes.LanguageStatusSeverity,
QuickPickItemKind: extHostTypes.QuickPickItemKind,
InputBoxValidationSeverity: extHostTypes.InputBoxValidationSeverity,
TextTabInput: extHostTypes.TextTabInput,
TextDiffTabInput: extHostTypes.TextDiffTabInput,
CustomEditorTabInput: extHostTypes.CustomEditorTabInput,
NotebookEditorTabInput: extHostTypes.NotebookEditorTabInput,
NotebookDiffEditorTabInput: extHostTypes.NotebookDiffEditorTabInput
TabKindText: extHostTypes.TextTabInput,
TabKindTextDiff: extHostTypes.TextDiffTabInput,
TabKindCustom: extHostTypes.CustomEditorTabInput,
TabKindNotebook: extHostTypes.NotebookEditorTabInput,
TabKindNotebookDiff: extHostTypes.NotebookDiffEditorTabInput
};
};
}