vimspector/support/test/python/simple_python/.vimspector.json

64 lines
1.4 KiB
JSON

{
"configurations": {
"run legacy vscode-python": {
"adapter": "vscode-python",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${file}",
"stopOnEntry": true,
"console": "integratedTerminal"
},
"breakpoints": {
"exception": {
"raised": "N",
"uncaught": ""
}
}
},
"attach": {
"adapter": "debugpy",
"configuration": {
"request": "attach",
"type": "python",
"host": "localhost",
"port": "5678"
},
"breakpoints": {
"exception": {
"raised": "N",
"uncaught": ""
}
}
},
"run": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${file}",
"stopOnEntry": false,
"console": "integratedTerminal"
},
"breakpoints": {
"exception": {
"raised": "N",
"uncaught": ""
}
}
},
"run - exception question": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${file}",
"stopOnEntry": false,
"console": "integratedTerminal"
}
}
}
}