We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Depends on microsoft/vscode#111037
Problem occured when debugging exercises that reads files (for example first exercise in part 6). https://ohjelmointi-21.mooc.fi/osa-6/1-tiedostojen-lukeminen#tiedostoja-lukevan-koodin-debuggaus
Problem can be solved by adding this to .code-workspace:
"launch": { "configurations": [ { "name": "TestMyCode: Debug open file", "type": "python", "request": "launch", "cwd": "${fileDirname}", "program": "${file}" } ], "compounds": [] }
This also enables F5 debugging without drop-down choosing as mentioned here https://ohjelmointi-21.mooc.fi/osa-4/1-vscode#debuggeri
Alternative: Or should we generate launch.json files automatically for each exercise, does this work?
launch.json
The text was updated successfully, but these errors were encountered:
jolampi
No branches or pull requests
Depends on microsoft/vscode#111037Problem occured when debugging exercises that reads files (for example first exercise in part 6).
https://ohjelmointi-21.mooc.fi/osa-6/1-tiedostojen-lukeminen#tiedostoja-lukevan-koodin-debuggaus
Problem can be solved by adding this to .code-workspace:
This also enables F5 debugging without drop-down choosing as mentioned here https://ohjelmointi-21.mooc.fi/osa-4/1-vscode#debuggeri
Alternative: Or should we generate
launch.json
files automatically for each exercise, does this work?The text was updated successfully, but these errors were encountered: