summaryrefslogtreecommitdiff
path: root/sys/dev/cons/cons_ansi.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/cons/cons_ansi.c')
-rw-r--r--sys/dev/cons/cons_ansi.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/cons/cons_ansi.c b/sys/dev/cons/cons_ansi.c
index a91f1d3..4403f9c 100644
--- a/sys/dev/cons/cons_ansi.c
+++ b/sys/dev/cons/cons_ansi.c
@@ -88,6 +88,13 @@ ansi_feed(struct ansi_state *statep, char c)
statep->csi = 2;
statep->prev = c;
return c;
+ case 2:
+ if (c == 'H') {
+ cons_reset_cursor(&g_root_scr);
+ ansi_reset(statep);
+ return ANSI_UPDATE_CURSOR;
+ }
+ break;
}
if (!statep->set_fg && !statep->set_bg) {