-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start debugging a python file directly from command line #5396
Comments
I think it need works from both vscode and extensions. I filed one in vscode. microsoft/vscode#72726 |
https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-debug-launcher mention that they can debug script by running "vscode://fabiospampinato.vscode-debug-launcher/<command>?args=<arg1>,<arg2>,<argN>". |
yes please, that would be awesome! |
I'v added python support to https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-debug-launcher. |
This is a feature request.
Expected behaviour
This a feature request. Currently, to debug a py script, I've to setup launch.json, which is very tedious if you just want to do some quick very verification.
Actual behaviour
Request: start to debug directly from command line, eg
code -e vspy -d ./a.py arg1 arg2, argN: to debug a.py with arg1 and arg2.... argN
"-e vspy" means "pass the following parameters to vscode-python extension."
The text was updated successfully, but these errors were encountered: