diff --git a/.zed/debug.json b/.zed/debug.json index a79d3146b5..2dde32b870 100644 --- a/.zed/debug.json +++ b/.zed/debug.json @@ -2,16 +2,11 @@ { "label": "Debug Zed (CodeLLDB)", "adapter": "CodeLLDB", - "program": "$ZED_WORKTREE_ROOT/target/debug/zed", - "request": "launch" + "build": { "label": "Build Zed", "command": "cargo", "args": ["build"] } }, { "label": "Debug Zed (GDB)", "adapter": "GDB", - "program": "$ZED_WORKTREE_ROOT/target/debug/zed", - "request": "launch", - "initialize_args": { - "stopAtBeginningOfMainSubprogram": true - } + "build": { "label": "Build Zed", "command": "cargo", "args": ["build"] } } ]