Tommy D. Rossi
Tommy D. Rossi
I would love to have this feature built into opentui. Currently text overflows and it can go over other elements. The API in React could look something like ```tsx very...
Have you thought about using NAPI to make the project run both in Bun and Node? There is this package to create automatic NAPI bindings from Zig code https://github.com/cztomsik/napigen
### Reproduction https://stackblitz.com/edit/github-p6swxmao?file=app%2Froutes%2Fhome.tsx Run in production mode with `pnpm build` and `pnpm start`. Error will be shown as `Unexpected Server Error` ### System Info ```shell System: OS: macOS 15.6 CPU:...
Currently opencode has no way to show colors for commands outputs because we do not have ANSI highlighting support My idea for implementing this would be to - Parse ANSI...
What is the best way to implement feedback and echo cancellation?
The default keybindings for `Ctrl+A` and `Ctrl+E` in `TextareaRenderable` were incorrectly mapped to `buffer-home` and `buffer-end` (jumping to the start/end of the entire textarea). This PR changes them to `line-home`...
Repro: ```tsx import { createRoot } from "react-dom/client"; import App from "./threejs"; import SpaceRepro from "./space-repro"; createRoot(document.getElementById("root")!).render(); createRoot(document.getElementById("root")!).render(); import { Canvas } from "@react-three/fiber" import { Container, Fullscreen, Text }...
I want to create something like Figma for reviewing giant PR diffs. The navigation would work similarly to Figma where you can press space and drag to move on the...
Bun's bytecode compilation reduces startup from ~520ms to ~44ms but requires no top-level await. This is blocking https://github.com/sst/opencode/issues/4843 There are 3 top-level await locations: **yoga-layout WASM** https://github.com/sst/opentui/blob/5dbe0b4be9b647f2d10ac90b63acdecf1a6998d8/packages/core/src/index.ts#L18 yoga-layout uses async...
Replace yoga-layout (WASM) with bun-yoga (native FFI via Zig) - Faster layout calculations using native code instead of WASM - Supports Windows, Linux, and macOS Closes #355 I created the...