Created
November 4, 2025 10:36
-
-
Save kaangiray26/a01451c4f5a6a49587c113be9a5ac356 to your computer and use it in GitHub Desktop.
Zed Debugger Configuration for Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Project-local debug tasks | |
| // | |
| // For more documentation on how to configure debug tasks, | |
| // see: https://zed.dev/docs/debugger | |
| [ | |
| { | |
| "label": "Python Debugger", | |
| "adapter": "Debugpy", | |
| "request": "attach", | |
| "tcp_connection": { | |
| "host": "127.0.0.1", | |
| "port": 5678 | |
| }, | |
| "cwd": "$ZED_WORKTREE_ROOT", | |
| "pathMappings": [ | |
| { | |
| "localRoot": "${ZED_WORKTREE_ROOT}", | |
| "remoteRoot": "." | |
| } | |
| ] | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment