vimspector/support/test/python/simple_python/.vimspector.json
2019-10-26 13:10:44 +01:00

24 lines
502 B
JSON

{
"configurations": {
"run": {
"adapter": "vscode-python",
"configuration": {
"request": "launch",
"type": "python",
"cwd": "${workspaceRoot}",
"program": "${file}",
"stopOnEntry": true,
"console": "integratedTerminal"
}
},
"attach": {
"adapter": "vscode-python",
"configuration": {
"request": "attach",
"type": "python",
"host": "localhost",
"port": "5678"
}
}
}
}