Remove cursor save/restore as it was wrecking things

Also, um, we didn't need it.
This commit is contained in:
Christian Rocha
2020-06-18 20:10:20 -04:00
parent d4d553c447
commit 00f7f5be93
2 changed files with 0 additions and 12 deletions

View File

@@ -27,14 +27,6 @@ func moveCursor(w io.Writer, row, col int) {
fmt.Fprintf(w, te.CSI+te.CursorPositionSeq, row, col)
}
func saveCursorPosition(w io.Writer) {
fmt.Fprint(w, te.CSI+te.SaveCursorPositionSeq)
}
func restoreCursorPosition(w io.Writer) {
fmt.Fprint(w, te.CSI+te.RestoreCursorPositionSeq)
}
func changeScrollingRegion(w io.Writer, top, bottom int) {
fmt.Fprintf(w, te.CSI+te.ChangeScrollingRegionSeq, top, bottom)
}