فهرست منبع

chore: generate

opencode-agent[bot] 3 ماه پیش
والد
کامیت
116a4e33ba
1فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 7 1
      packages/opencode/src/cli/cmd/tui/util/collapse-tool-output.ts

+ 7 - 1
packages/opencode/src/cli/cmd/tui/util/collapse-tool-output.ts

@@ -6,7 +6,13 @@ export function collapseToolOutput(output: string, maxLines: number, maxChars: n
 
   const preview = lines.slice(0, maxLines).join("\n")
   if (Array.from(preview).length > maxChars) {
-    return { output: Array.from(preview).slice(0, Math.max(0, maxChars - 1)).join("") + "…", overflow: true }
+    return {
+      output:
+        Array.from(preview)
+          .slice(0, Math.max(0, maxChars - 1))
+          .join("") + "…",
+      overflow: true,
+    }
   }
 
   return { output: [...lines.slice(0, maxLines), "…"].join("\n"), overflow: true }