Skip to content

Commit

Permalink
Make "args": "${command:pickArgs}" as default debug configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
TCPsoftware committed Jan 8, 2025
1 parent 1b6ac0d commit e0153c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function buildFileWithArgsLaunchDebugConfiguration(
request: 'launch',
program: '${file}',
console: 'integratedTerminal',
args: ['${command:pickArgs}'],
args: '${command:pickArgs}',
};
sendTelemetryEvent(EventName.DEBUGGER_CONFIGURATION_PROMPTS, undefined, {
configurationType: DebugConfigurationType.launchFileWithArgs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ suite('Debugging - Configuration Provider File with Arguments', () => {
request: 'launch',
program: '${file}',
console: 'integratedTerminal',
args: ['${command:pickArgs}'],
args: '${command:pickArgs}',
};

expect(state.config).to.be.deep.equal(config);
Expand Down

0 comments on commit e0153c2

Please sign in to comment.