Jelajahi Sumber

Draw cursor at end of scrolldown

Jochen Sprickerhof 6 tahun lalu
induk
melakukan
f9780ebc81
1 mengubah file dengan 2 tambahan dan 0 penghapusan
  1. 2 0
      scroll.c

+ 2 - 0
scroll.c

@@ -201,6 +201,8 @@ scrolldown(void)
 		bottom = TAILQ_PREV(bottom, tailhead, entries);
 		write(STDOUT_FILENO, bottom->buf, bottom->size);
 	}
+	if (bottom == TAILQ_FIRST(&head))
+		write(STDOUT_FILENO, "\033[?25h", 6);
 }
 
 int