docs: Document debugger.dock setting (#32038)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-06-04 01:38:41 +02:00 committed by GitHub
parent d23359e19a
commit 8227c45a11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -279,6 +279,7 @@ The debug adapter will then stop whenever an exception of a given kind occurs. W
## Settings
- `dock`: Determines the position of the debug panel in the UI.
- `stepping_granularity`: Determines the stepping granularity.
- `save_breakpoints`: Whether the breakpoints should be reused across Zed sessions.
- `button`: Whether to show the debug button in the status bar.
@ -286,6 +287,24 @@ The debug adapter will then stop whenever an exception of a given kind occurs. W
- `log_dap_communications`: Whether to log messages between active debug adapters and Zed.
- `format_dap_log_messages`: Whether to format DAP messages when adding them to the debug adapter logger.
### Dock
- Description: The position of the debug panel in the UI.
- Default: `bottom`
- Setting: debugger.dock
**Options**
1. `left` - The debug panel will be docked to the left side of the UI.
2. `right` - The debug panel will be docked to the right side of the UI.
3. `bottom` - The debug panel will be docked to the bottom of the UI.
```json
"debugger": {
"dock": "bottom"
},
```
### Stepping granularity
- Description: The Step granularity that the debugger will use