Move language-specific debugging docs to the page for each language (#33692)

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-07-01 16:02:12 -04:00 committed by GitHub
parent 0e2e5b8b0d
commit b7bfdd3383
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 411 additions and 345 deletions

View file

@ -56,7 +56,7 @@ impl zed::Extension for MyExtension {
}
```
`dap_config_to_scenario` is used when the user spawns a session via new session modal UI. At a high level, it takes a generic debug configuration (that isn't specific to any
`dap_config_to_scenario` is used when the user spawns a session via new process modal UI. At a high level, it takes a generic debug configuration (that isn't specific to any
debug adapter) and tries to turn it into a concrete debug scenario for your adapter.
Put another way, it is supposed to answer the question: "Given a program, a list of arguments, current working directory and environment variables, what would the configuration for spawning this debug adapter look like?".