diff --git a/src/vs/workbench/api/node/extHostTerminalService.ts b/src/vs/workbench/api/node/extHostTerminalService.ts index 7624476c887..15d4df084c5 100644 --- a/src/vs/workbench/api/node/extHostTerminalService.ts +++ b/src/vs/workbench/api/node/extHostTerminalService.ts @@ -786,9 +786,7 @@ export class ExtHostVirtualProcess implements ITerminalChildProcess { this._queueDisposables = undefined; // Attach the real listeners - this._virtualProcess.onDidWrite(e => { - this._onProcessData.fire(e); - }); + this._virtualProcess.onDidWrite(e => this._onProcessData.fire(e)); if (this._virtualProcess.onDidExit) { this._virtualProcess.onDidExit(e => this._onProcessExit.fire(e)); }