We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e2b219 commit 1befdfbCopy full SHA for 1befdfb
packages/use-agently/src/output.ts
@@ -21,7 +21,7 @@ export function resolveOutputFormat(command: Command): OutputFormat {
21
}
22
23
24
-/** Available width: use terminal columns if known, otherwise 80, but at least 120. */
+/** Available width: use terminal columns if known, otherwise default to 120 (minimum 120). */
25
export function getMaxWidth(): number {
26
return Math.max(process.stdout.columns || 80, 120);
27
0 commit comments