This also fixes that we did not see the initial debug tasks defined in `initial_debug_tasks.json`. So new users should see at least these debug tasks the could run, without having to define them their selfs.
24 lines
485 B
JSON
24 lines
485 B
JSON
[
|
|
{
|
|
"label": "Debug active PHP file",
|
|
"adapter": "php",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT"
|
|
},
|
|
{
|
|
"label": "Debug active Python file",
|
|
"adapter": "python",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT"
|
|
},
|
|
{
|
|
"label": "Debug active JavaScript file",
|
|
"adapter": "javascript",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT"
|
|
}
|
|
]
|