Update vim/xdebug.md

This commit is contained in:
Ste Vaidis 2023-11-17 11:44:10 +02:00
parent 8de0997359
commit 4da1752782

View File

@ -46,6 +46,26 @@ Show current settings
```sh ```sh
php -r 'xdebug_info();' php -r 'xdebug_info();'
``` ```
## Adapter
`packages/php-debug-adapter/extension/package.json`
```json
"port": {
"type": "number",
"description": "Port on which to listen for Xdebug",
"default": 9003
},
"php.debug.ideKey": {
"type": "string",
"default": "vsc",
"description": "A unique key that allows the proxy to match requests to your editor. Only used when proxy configuration includes replacement.",
"scope": "machine-overridable"
}
```
## Trigger ## Trigger