benibenj / vscode-pythonCpp

A Visual Studio Code Debug Extension for debugging mixed Python and C++ code. The extension starts a Python debug session and attaches the C++ debugger to it. This extension is useful for debugging Python programs that call functions from shared libraries (.so/.dll).
Other
47 stars 7 forks source link

how to pass arguments to the running script? #13

Closed songlin closed 1 year ago

songlin commented 1 year ago

Hi,

With python debug, I can add command line arguments like following:


"args": [
                "--a", "b", 
                "--b", "b", 
                "--c", "c"]

how to do the same thing with this plugin?