Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
takkii committed Dec 11, 2024
1 parent bdb5203 commit 46a3a5f
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions python.sublime-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"folders":
[
{
"path": ".",
}
],
"debugger_configurations":
[
{
"name": "Python Debugger: Attach remote debug.",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"justMyCode" : false,
},
{
"name": "Python Debugger: WSL2 Attach remote debug.",
"type": "python",
"request": "attach",
"connect": {
// My WSL2 IP Adress
"host": "",
"port": 5678
},
"justMyCode" : false,
},
{
"name" : "Python Debugger: Attach using process Id",
"type" : "python",
"request" : "attach",
"selector": "source.python | text.html.python",
"debugServer": 5678,
// At startup, check.
"processId": "",
"pathMappings": [{
"localRoot": "${workspaceFolder}",
"remoteRoot": "."
}],
"justMyCode" : false,
},
{
"name": "Python Debugger: Current File",
"type": "sublime",
"platform": "windows",
"request": "launch",
"selector": "source.python | text.html.python",
"program": "\\${file}",
"console": "integratedTerminal",
"justMyCode" : false,
},
],
}

0 comments on commit 46a3a5f

Please sign in to comment.