We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050f76a commit 43b8cc9Copy full SHA for 43b8cc9
src/_terminal-utils.ts
@@ -62,8 +62,7 @@ export class TerminalManager {
62
*/
63
clearScreen(): void {
64
if (this.stream.isTTY) {
65
- // Use readline to clear and reposition cursor - this is more reliable
66
- // than ANSI escape sequences in some environments
+ // Use readline to clear and reposition cursor
67
readline.cursorTo(this.stream, 0, 0);
68
readline.clearScreenDown(this.stream);
69
// Reset line counter for next content
0 commit comments