Skip to content

Instantly share code, notes, and snippets.

@javiermolinar
Last active October 7, 2025 10:32
Show Gist options
  • Save javiermolinar/3304bc55fa65a9dc09e2f8c94e63b283 to your computer and use it in GitHub Desktop.
Save javiermolinar/3304bc55fa65a9dc09e2f8c94e63b283 to your computer and use it in GitHub Desktop.
Debug task for debugging C files in Zed
[
{
"label": "Debug C file",
"build": {
"command": "gcc",
"args": ["-g", "${ZED_FILE}", "-o", "${ZED_DIRNAME}/${ZED_STEM}.out"],
"cwd": "${ZED_WORKTREE_ROOT}"
},
"program": "${ZED_DIRNAME}/${ZED_STEM}.out",
"request": "launch",
"adapter": "CodeLLDB"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment