This commit is contained in:
Sebastian Herrlinger
2026-02-13 23:22:45 +01:00
parent 27090c122d
commit 9a5cf7dfe5
7 changed files with 175 additions and 72 deletions

View File

@@ -164,7 +164,12 @@ You can configure TUI-specific settings through the `tui` option.
"scroll_acceleration": {
"enabled": true
},
"diff_style": "auto"
"diff_style": "auto",
"renderer": {
"target_fps": 60,
"auto_focus": false,
"use_kitty_keyboard": true
}
}
}
```
@@ -174,6 +179,7 @@ Available options:
- `scroll_acceleration.enabled` - Enable macOS-style scroll acceleration. **Takes precedence over `scroll_speed`.**
- `scroll_speed` - Custom scroll speed multiplier (default: `3`, minimum: `1`). Ignored if `scroll_acceleration.enabled` is `true`.
- `diff_style` - Control diff rendering. `"auto"` adapts to terminal width, `"stacked"` always shows single column.
- `renderer` - Renderer startup options such as `target_fps`, `max_fps`, `gather_stats`, `use_mouse`, `enable_mouse_movement`, `use_alternate_screen`, `auto_focus`, `open_console_on_error`, and `use_kitty_keyboard`.
[Learn more about using the TUI here](/docs/tui).