respect user settings when creating terminals; fixes #109111

This commit is contained in:
Andre Weinand
2020-11-13 09:59:03 +01:00
parent 5d7ca3a879
commit 0998e4ccbb

View File

@@ -88,7 +88,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
if (!terminal) {
const options: vscode.TerminalOptions = {
shellPath: shell,
// shellArgs: this._terminalService._getDefaultShellArgs(configProvider),
shellArgs: this._terminalService.getDefaultShellArgs(true, configProvider),
cwd: args.cwd,
name: args.title || nls.localize('debug.terminal.title', "debuggee"),
};