Created
January 20, 2022 19:16
-
-
Save NickCrew/fdecfb3afe360399289c0b99092efa10 to your computer and use it in GitHub Desktop.
Vimspector Generic Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": { | |
"python-debug": { | |
"default": true, | |
"adapter": "debugpy", | |
"filetypes": [ "python" ], | |
"breakpoints": { | |
"exception": { | |
"all": "N", | |
"uncaught": "Y" | |
} | |
}, | |
"configuration": { | |
"type": "python", | |
"request": "launch", | |
"stopOnEntry": true, | |
"python": "python", | |
"program": "${file}" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment