Pass workspace path to zed when debugging it in VS Code

This commit is contained in:
Antonio Scandurra 2021-03-26 14:14:23 +01:00
parent 466016a374
commit 13c1f5f60e

6
.vscode/launch.json vendored
View File

@ -19,7 +19,9 @@
"kind": "bin"
}
},
"args": [],
"args": [
"${workspaceFolder}"
],
"cwd": "${workspaceFolder}"
},
{
@ -61,4 +63,4 @@
"cwd": "${workspaceFolder}"
}
]
}
}