Initial terminal welcome support

This commit is contained in:
Daniel Imms
2020-08-27 12:38:33 -07:00
parent b2b71a8296
commit aa6b2f163d
10 changed files with 76 additions and 27 deletions

View File

@@ -178,6 +178,10 @@ export class MainThreadTerminalService implements MainThreadTerminalServiceShape
this._linkProvider = undefined;
}
public $registerProcessSupport(isSupported: boolean): void {
this._terminalService.registerProcessSupport(isSupported);
}
private _onActiveTerminalChanged(terminalId: number | null): void {
this._proxy.$acceptActiveTerminalChanged(terminalId);
}