hedgequantx 2.9.10 → 2.9.11
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/package.json +1 -1
- package/src/ui/index.js +2 -2
package/package.json
CHANGED
package/src/ui/index.js
CHANGED
|
@@ -81,8 +81,8 @@ const displayBanner = () => {
|
|
|
81
81
|
* Uses ANSI escape codes directly to avoid terminal state issues
|
|
82
82
|
*/
|
|
83
83
|
const clearScreen = () => {
|
|
84
|
-
// ESC[2J = clear
|
|
85
|
-
process.stdout.write('\x1B[2J\x1B[
|
|
84
|
+
// ESC[H = home, ESC[2J = clear screen, ESC[3J = clear scrollback
|
|
85
|
+
process.stdout.write('\x1B[H\x1B[2J\x1B[3J');
|
|
86
86
|
};
|
|
87
87
|
|
|
88
88
|
/**
|