Open bersbersbers opened 3 years ago
I see this behavior in 2 cases:
Ex: If I have this launch config in my workspace:
"launch": {
"configurations": [
{
"name": "A",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"justMyCode": true
},
and this one in a launch.json:
{
"version": "0.3.0",
"configurations": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
}
]
}
If I flip "JustMyCode" boolean, the "Run and Debug" combo box is automatically reset to "Python: Current File".
I was asked to post this in https://github.com/microsoft/vscode/issues/124770#issuecomment-886668938.
Does this issue occur when all extensions are disabled?: Yes/No
Steps to Reproduce:
settings.json
(let' say "Python: Current File", which makes sense in any folder or workspace)project/.vscode/launch.json
with additional launch configs (let's call them "A", "B", "C")settings.json
:Related issues: #90216, #100451.