Misc
diff --git a/src/tty/unix.rs b/src/tty/unix.rs
index f1d435c..72655c7 100644
--- a/src/tty/unix.rs
+++ b/src/tty/unix.rs
@@ -370,7 +370,7 @@
         }
         // clear old rows
         for _ in 0..old_rows {
-            ab.push_str("\r\x1b[0K\x1b[1A");
+            ab.push_str("\r\x1b[0K\x1b[A");
         }
         // clear the line
         ab.push_str("\r\x1b[0K");