From 078c5b079fb22a929e0e33754a2ec4adb3a5ee0e Mon Sep 17 00:00:00 2001 From: Nate Meyer <672246+notnmeyer@users.noreply.github.com> Date: Wed, 18 Feb 2026 17:59:36 -0800 Subject: [PATCH] use whatever the terminal width is --- internal/output-formatter/output-formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/output-formatter/output-formatter.go b/internal/output-formatter/output-formatter.go index 6199155..a62d0ba 100644 --- a/internal/output-formatter/output-formatter.go +++ b/internal/output-formatter/output-formatter.go @@ -24,7 +24,7 @@ func Format(format, content string) (string, error) { case "markdown", "md": renderer, _ := glamour.NewTermRenderer( glamour.WithAutoStyle(), - glamour.WithWordWrap(100), + glamour.WithWordWrap(0), ) var err error