feat(tui): use OpenTUI clipboard service

This commit is contained in:
Simon Klee 2026-08-03 08:15:58 +02:00
commit 679a587c9d
No known key found for this signature in database
GPG key ID: B91696044D47BEA3
21 changed files with 403 additions and 236 deletions

View file

@ -60,6 +60,9 @@ async function mountForm(root: string, width = 80) {
>
<ClipboardProvider
value={{
async read() {
return undefined
},
write(text) {
copied.push(text)
return Promise.resolve()