You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the launch.json file, change from "args": ["${command:pickArgs}"], to "args": "${command:pickArgs}", , just remove the square bracket
The text was updated successfully, but these errors were encountered:
OccupyMars2025
changed the title
in the file launch.json , ${command:pickArgs} is collecting all your args into a single string
[solved]in the file launch.json , ${command:pickArgs} is collecting all your args into a single string
Sep 6, 2024
In cpu-intro, when I debug the python file, I have difficulty in entering the long command line arguments, like the following:
-l 3:0,5:100,5:100,5:100 -S SWITCH_ON_IO -c -p -I IO_RUN_LATER
the vscode treats all behind
-l
as a single valuesolution: microsoft/vscode-python#23003 (comment)
In the launch.json file, change from
"args": ["${command:pickArgs}"],
to"args": "${command:pickArgs}",
, just remove the square bracketThe text was updated successfully, but these errors were encountered: