From 13c1f5f60edf2995e7da7b28d960eec1aaa638de Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Fri, 26 Mar 2021 14:14:23 +0100 Subject: [PATCH] Pass workspace path to zed when debugging it in VS Code --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8071d75f8b..68fd885cf2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -19,7 +19,9 @@ "kind": "bin" } }, - "args": [], + "args": [ + "${workspaceFolder}" + ], "cwd": "${workspaceFolder}" }, { @@ -61,4 +63,4 @@ "cwd": "${workspaceFolder}" } ] -} \ No newline at end of file +}