Skip to content

Commit b1ecb75

Browse files
rkeithhilldaviwil
authored andcommitted
Fix debug config snippet for launch file w/args prompt.
We were leaving out the call to the SpecifyScriptArgs command. :-(
1 parent 58e969b commit b1ecb75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,14 +225,14 @@
225225
}
226226
},
227227
{
228-
"label": "PowerShell: Launch - Current File w/Args Prompt",
228+
"label": "PowerShell: Launch Current File w/Args Prompt",
229229
"description": "Launch current file (in active editor window) under debugger, prompting first for script arguments",
230230
"body": {
231231
"type": "PowerShell",
232232
"request": "launch",
233233
"name": "PowerShell Launch Current File w/Args Prompt",
234234
"script": "^\"\\${file}\"",
235-
"args": [],
235+
"args": [ "^\"\\${command:SpecifyScriptArgs}\"" ],
236236
"cwd": "^\"\\${file}\""
237237
}
238238
},

0 commit comments

Comments
 (0)