Simplify generated launch.json
See original GitHub issueHey,
VSCode dev here. This milestone I am looking into simplifing generated launch.json
for various extensions Microsoft/vscode#62851
The launch.json
that Python generates is attached at the end. This is far too complex for the avarage user. I suggest to simplify it the following way:
-
DebugConfigurationProvider
should use thequickPick
to ask the user if he would like to debug the current file, attach, debug a python module, python django or debug python flask. Based on the user response only generate one configuration - Remove host: “localhost” from the
attach
, this should be the default value and should not be specified - If you strongly feel that the user should be asked what console to use, also ask that as a follow up question. IMHO this should not be asked, and just generate what you think is the best default experience
- If the port is not standard also ask the user for it using
quickInput
, example - You are already contributing
configurationSnippets
which is great
If you agree with the suggestions I am making here I am also here to help with any potential questions you might have. The changes should not require a lot of work but will simplify the flow a lot imho.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 5678,
"host": "localhost"
},
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"module": "enter-your-module-name-here",
"console": "integratedTerminal"
},
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"console": "integratedTerminal",
"args": [
"runserver",
"--noreload",
"--nothreading"
],
"django": true
},
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "app.py"
},
"args": [
"run",
"--no-debugger",
"--no-reload"
],
"jinja": true
},
{
"name": "Python: Current File (External Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "externalTerminal"
}
]
}
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:15 (5 by maintainers)
Top Results From Across the Web
Debugging in Visual Studio Code
If running and debugging is not yet configured (no launch.json has been created), VS Code shows the Run start view. Simplified initial Run...
Read more >Why when I create launch.json file in VScode, it is empty?
These steps helped me: Go to your launch.json file and press the "Add Configuration" button img 1. Choose "C/C++: (gdb) Launch" img 2....
Read more >Quick Tip: How do I recreate my launch.json in VSCode?
Do you manually create a new launch.json file? Do you copy a launch.json file from another project? Do you go to #bcalhelp and...
Read more >Integration with Visual Studio Code debugging - Microsoft Learn
Select Activity Bar > Microsoft Edge Tools > click the Generate launch.json button, and then press F5 . Or, see Opening DevTools and...
Read more >Generating the launch.json File_Kunpeng DevKit_Kunpeng DevKit ...
If Visual Studio Code does not have a launch.json file, create one by choosing Run > Add Configuration > Chrome, as shown in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Changes to be made:
Python: Current File (External Terminal)
, leave it as a configuration snippetPython: Current File (Integrated Terminal)
toPython: Current File
.console
from this snippet and default config entrySounds good!
@Microsoft/pvsc-team while we’re working on this I have a few other suggestions: