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

@@ -54,8 +54,8 @@
"@opencode-ai/plugin": "workspace:*",
"@opencode-ai/script": "workspace:*",
"@opencode-ai/sdk": "workspace:*",
"@opentui/core": "0.1.45",
"@opentui/solid": "0.1.45",
"@opentui/core": "0.1.46",
"@opentui/solid": "0.1.46",
"@parcel/watcher": "2.5.1",
"@pierre/precision-diffs": "catalog:",
"@solid-primitives/event-bus": "1.1.2",

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"),