vimspector/.vimspector.json
2020-09-18 20:59:21 +01:00

23 lines
510 B
JSON

{
"configurations": {
"Python: Attach To Vim": {
"variables": {
"port": "5678",
"host": "localhost"
},
"adapter": "multi-session",
"configuration": {
"request": "attach"
}
},
"Python: Run current script": {
"adapter": "debugpy",
"configuration": {
"request": "launch",
"program": "${file}",
"args": [ "*${args:--update-gadget-config}" ],
"justMyCode#json": "${justMyCode:true}"
}
}
}
}