
This PR updates the name of the `NewSessionModal` to `NewProcessModal` (to reflect it's new purpose), changes the tabs in the modal to read `Run | Debug | Attach | Launch` and changes the associated types in code to match the tabs. In addition, this PR adds a few labels to the text fields in the `Launch` tab, and adds a link to open the associated settings file. In both debug.json files, added links to the zed.dev debugger docs. Release Notes: - Debugger Beta: Improve the new process modal
34 lines
804 B
JSON
34 lines
804 B
JSON
// Some example tasks for common languages.
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Debug active PHP file",
|
|
"adapter": "PHP",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT"
|
|
},
|
|
{
|
|
"label": "Debug active Python file",
|
|
"adapter": "Debugpy",
|
|
"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"
|
|
},
|
|
{
|
|
"label": "JavaScript debug terminal",
|
|
"adapter": "JavaScript",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|