upgrade opentui to v0.1.46

- enable bracketed paste (and more) on win
- fix word wrapping with CJK and at wrap/chunk boundaries
- old style meta+arrow
- allow <1 scroll speed for slowdown
This commit is contained in:
Sebastian Herrlinger
2025-11-18 00:22:10 +01:00
parent 17cde9feb7
commit bf6204f577
4 changed files with 15 additions and 13 deletions

View File

@@ -437,7 +437,7 @@ export namespace Config {
})
export const TUI = z.object({
scroll_speed: z.number().min(1).optional().default(1).describe("TUI scroll speed"),
scroll_speed: z.number().min(0.001).optional().default(1).describe("TUI scroll speed"),
scroll_acceleration: z
.object({
enabled: z.boolean().describe("Enable scroll acceleration"),