فهرست منبع

Draw cursor at end of scrolldown

Jochen Sprickerhof 6 سال پیش
والد
کامیت
f9780ebc81
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  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