claude-scope 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/claude-scope.cjs +6 -2
- package/package.json +1 -1
package/dist/claude-scope.cjs
CHANGED
|
@@ -6539,9 +6539,13 @@ function selectWithPreviewImpl(config, done) {
|
|
|
6539
6539
|
if (status === "done") {
|
|
6540
6540
|
return [`${config.message} ${activeChoice.name}`, ""];
|
|
6541
6541
|
}
|
|
6542
|
-
const
|
|
6542
|
+
const line = "\x1B[1;37m" + "\u2500".repeat(60) + "\x1B[0m";
|
|
6543
|
+
const previewBox = `${line}
|
|
6544
|
+
\x1B[1;37mLive Preview\x1B[0m
|
|
6545
|
+
|
|
6543
6546
|
${preview}
|
|
6544
|
-
|
|
6547
|
+
|
|
6548
|
+
${line}`;
|
|
6545
6549
|
return [config.message, `${page}
|
|
6546
6550
|
|
|
6547
6551
|
${previewBox}`];
|