More granular TerminalExitReason

This commit is contained in:
jeanp413
2022-06-25 14:10:00 -05:00
parent 757c5f54c9
commit 4e102e65da
10 changed files with 53 additions and 30 deletions

View File

@@ -1273,7 +1273,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
TaskPanelKind: extHostTypes.TaskPanelKind,
TaskRevealKind: extHostTypes.TaskRevealKind,
TaskScope: extHostTypes.TaskScope,
TerminalExitReason: extHostTypes.TerminalExitReason,
TerminalLink: extHostTypes.TerminalLink,
TerminalLocation: extHostTypes.TerminalLocation,
TerminalProfile: extHostTypes.TerminalProfile,
@@ -1342,7 +1341,8 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
TabInputNotebook: extHostTypes.NotebookEditorTabInput,
TabInputNotebookDiff: extHostTypes.NotebookDiffEditorTabInput,
TabInputWebview: extHostTypes.WebviewEditorTabInput,
TabInputTerminal: extHostTypes.TerminalEditorTabInput
TabInputTerminal: extHostTypes.TerminalEditorTabInput,
TerminalExitReason: extHostTypes.TerminalExitReason
};
};
}