nexrall-code 0.5.91 → 0.5.93
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -152120,7 +152120,7 @@ function createResizeDebouncer(settleMs, onSettle, deps = defaultDeps) {
|
|
|
152120
152120
|
// src/ui/inkTerminal.tsx
|
|
152121
152121
|
function footerText(info) {
|
|
152122
152122
|
const modeLabel = info.autoApprove ? "yolo mode on" : info.mode === "plan" ? "plan mode on" : info.mode === "edit" ? "edit mode on" : info.mode === "ask" ? "ask mode on" : "auto mode on";
|
|
152123
|
-
return `${modeLabel} \xB7 /help for shortcuts \xB7
|
|
152123
|
+
return `${modeLabel} \xB7 /help for shortcuts \xB7 Ctrl+J for newline`;
|
|
152124
152124
|
}
|
|
152125
152125
|
function fillerContent(rows) {
|
|
152126
152126
|
if (rows <= 0)
|
|
@@ -152454,7 +152454,7 @@ var App2 = ({ onReady }) => {
|
|
|
152454
152454
|
}, [forceFullRedraw]);
|
|
152455
152455
|
const collapseStartupPadding = (0, import_react35.useCallback)(async () => {
|
|
152456
152456
|
await inkInstance?.waitUntilRenderFlush();
|
|
152457
|
-
process.stdout.write("\x1B[2J\x1B[H");
|
|
152457
|
+
process.stdout.write("\x1B[2J\x1B[3J\x1B[H");
|
|
152458
152458
|
repadBottomChrome();
|
|
152459
152459
|
setStaticKey((k) => k + 1);
|
|
152460
152460
|
}, [repadBottomChrome]);
|