migrate createTerminal to use CreateTerminalOptions everywhere

This commit is contained in:
meganrogge
2021-06-15 13:26:00 -07:00
parent 03da9c1deb
commit 377131da05
6 changed files with 11 additions and 9 deletions

View File

@@ -151,7 +151,7 @@ export class MainThreadTerminalService implements MainThreadTerminalServiceShape
}
}
if (!terminal) {
terminal = this._terminalService.createTerminal(shellLaunchConfig);
terminal = this._terminalService.createTerminal({ config: shellLaunchConfig });
}
this._extHostTerminalIds.set(extHostTerminalId, terminal.instanceId);
}