We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4fa48 commit 4713b13Copy full SHA for 4713b13
src/vs/platform/terminal/electron-browser/localPtyService.ts
@@ -97,7 +97,7 @@ export class LocalPtyService extends Disposable implements IPtyService {
97
// }));
98
99
// Create proxy and forward events
100
- const proxy = new PtyService(this._logService);
+ const proxy = this._register(new PtyService(this._logService));
101
// const proxy = ProxyChannel.toService<IPtyService>(client.getChannel(TerminalIpcChannels.PtyHost));
102
this._register(proxy.onProcessData(e => this._onProcessData.fire(e)));
103
this._register(proxy.onProcessExit(e => this._onProcessExit.fire(e)));
0 commit comments