// filename: lauch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "macos",
"program": "${workspaceFolder}/zed",//修改,windows加.exe
"args": [
"log.txt",//如果需要参数
],
"cwd": "${workspaceFolder}"
//这里的意思是 zed log.txt
},
]
}