Use pty naming instead of virtual process

Part of #77160
This commit is contained in:
Daniel Imms
2019-07-25 16:00:41 -07:00
parent a32dfe15ad
commit 3866deba35
14 changed files with 142 additions and 129 deletions

View File

@@ -588,7 +588,7 @@ export class ExtHostTask implements ExtHostTaskShape {
// Clone the custom execution to keep the original untouched. This is important for multiple runs of the same task.
this._activeCustomExecutions2.set(execution.id, execution2);
await this._terminalService.attachVirtualProcessToTerminal(terminalId, await execution2.callback());
await this._terminalService.attachPtyToTerminal(terminalId, await execution2.callback());
}
// Once a terminal is spun up for the custom execution task this event will be fired.