Update src/vs/workbench/api/node/extHostDebugService.ts

Co-authored-by: Connor Peet <connor@peet.io>
This commit is contained in:
Daniel Gary
2021-05-11 13:53:01 -05:00
committed by GitHub
parent 791caebcc5
commit 8144e138ca

View File

@@ -82,7 +82,7 @@ export class ExtHostDebugService extends ExtHostDebugServiceBase {
const shell = this._terminalService.getDefaultShell(true, configProvider);
const shellArgs = this._terminalService.getDefaultShellArgs(true, configProvider);
const terminalName = args.title || nls.localize('debug.terminal.title', "debuggee");
const terminalName = args.title || nls.localize('debug.terminal.title', "Debug Process");
const shellConfig = JSON.stringify({ shell, shellArgs });
let terminal = await this._integratedTerminalInstances.checkout(shellConfig, terminalName);