Skip to content

Commit

Permalink
Add a debug configuration, and switch all of them to debugpy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Poikilos committed Apr 9, 2024
1 parent 3157250 commit c47e7a7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions rotocanvas.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,29 @@

{
"name": "App (Kivy)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal"
},
{
"name": "Image browser (Tkinter)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run.pyw",
"console": "integratedTerminal"
},
{
"name": "imagepx (Tkinter)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/imagepx",
"console": "integratedTerminal",
"args": ["tests/data/pil-compatible"]
},
{
"name": "DiffImage (Tkinter)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/scripts/diffimage-gui",
"console": "integratedTerminal"
Expand Down

0 comments on commit c47e7a7

Please sign in to comment.