Add command to sync initial high performance view

This commit is contained in:
Christian Rocha
2020-06-18 13:42:11 -04:00
parent 3688351ddf
commit 5572542e2e
2 changed files with 12 additions and 13 deletions
-4
View File
@@ -84,10 +84,6 @@ func cursorDown(w io.Writer, numLines int) {
fmt.Fprintf(w, te.CSI+te.CursorDownSeq, numLines)
}
func cursorDownString(numLines int) string {
return fmt.Sprintf(te.CSI+te.CursorDownSeq, numLines)
}
func clearLine(w io.Writer) {
fmt.Fprintf(w, te.CSI+te.EraseLineSeq, 2)
}