Currently the template for launch.json comes up with something similar to
{
// 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: Remote Attach",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}
],
"justMyCode": true
}
]
}
But with a development setup (i.e. slicer built from source) the pathMappings parameter here might the debugger from stepping into slicer python code, this might also be a problem how i set up the workspace though, but removing the pathMappings entry allowed stepping into the base slicer python
Currently the template for
launch.jsoncomes up with something similar toBut with a development setup (i.e. slicer built from source) the
pathMappingsparameter here might the debugger from stepping into slicer python code, this might also be a problem how i set up the workspace though, but removing thepathMappingsentry allowed stepping into thebaseslicer python