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 28421d4 commit 77df551Copy full SHA for 77df551
lib/src/application/components/screen.dart
@@ -26,7 +26,12 @@ final class ScreenManager {
26
}
27
28
void enter() {
29
- stdout.writeAnsi(AlternateScreen.enter);
+ stdout.writeAnsiAll([
30
+ AlternateScreen.enter,
31
+ CursorPosition.reset,
32
+ Clear.afterCursor,
33
+ ]);
34
+
35
if (_screen._title case String title) {
36
stdout.writeAnsi(SetTitle(title));
37
0 commit comments