Last active
June 17, 2016 16:45
-
-
Save juniorkrvl/30c0ed1d3f5dc8bbf6a184c7e52253e5 to your computer and use it in GitHub Desktop.
Python Lauch and Tasks JSON files
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Python", | |
"type": "python", | |
"request": "launch", | |
"stopOnEntry": true, | |
"program": "${file}", | |
"args": [""], | |
"debugOptions": [ | |
"WaitOnAbnormalExit", | |
"WaitOnNormalExit", | |
"RedirectOutput" | |
] | |
} | |
] | |
} |
This file contains 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
{ | |
"version": "0.1.0", | |
"command": "python", | |
"args": ["${fileBasename}"], | |
"showOutput": "always" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment