From 4fabce58d8dd26d2eddfc4750f970f151f7a69c3 Mon Sep 17 00:00:00 2001 From: Patrick Erichsen Date: Sun, 7 Dec 2025 17:12:54 -0800 Subject: [PATCH] fix(cli): prevent help text wrapping (#5185) --- packages/opencode/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/opencode/src/index.ts b/packages/opencode/src/index.ts index 6545f8185..638ee7347 100644 --- a/packages/opencode/src/index.ts +++ b/packages/opencode/src/index.ts @@ -43,6 +43,7 @@ process.on("uncaughtException", (e) => { const cli = yargs(hideBin(process.argv)) .parserConfiguration({ "populate--": true }) .scriptName("opencode") + .wrap(100) .help("help", "show help") .alias("help", "h") .version("version", "show version number", Installation.VERSION)