
Release Notes: - debugger beta: Fix panic that could occur when selecting a stack frame - debugger beta: Fix inline values not showing in stack trace view Co-authored-by: Bennet Bo Fenner <bennetbo@gmx.de> Co-authored-by: Remco Smits <djsmits12@gmail.com>
17 lines
335 B
JSON
17 lines
335 B
JSON
[
|
|
{
|
|
"label": "Debug Zed (CodeLLDB)",
|
|
"adapter": "CodeLLDB",
|
|
"program": "target/debug/zed",
|
|
"request": "launch"
|
|
},
|
|
{
|
|
"label": "Debug Zed (GDB)",
|
|
"adapter": "GDB",
|
|
"program": "target/debug/zed",
|
|
"request": "launch",
|
|
"initialize_args": {
|
|
"stopAtBeginningOfMainSubprogram": true
|
|
}
|
|
}
|
|
]
|