From c42d060509eb9c8c6e74d8d1788dc97e851add96 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Thu, 29 May 2025 21:29:18 +0200 Subject: [PATCH] Update debug.json in Zed repo to run the build on session startup (#31707) Closes #ISSUE Release Notes: - N/A --- .zed/debug.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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"] } } ]