From 9f9c519cbaa5384e666ffa2b5e1cf4f99780ba28 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 5 Nov 2019 15:38:37 -0500 Subject: fix erasing cells in diff also add more comprehensive tests --- src/row.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/row.rs') diff --git a/src/row.rs b/src/row.rs index 9322c36..5f2f775 100644 --- a/src/row.rs +++ b/src/row.rs @@ -158,7 +158,7 @@ impl Row { contents.extend(if cell.has_contents() { cell.contents().as_bytes() } else { - b"\x1b[X" + b"\x1b[X\x1b[C" }); } } -- cgit v1.2.3-54-g00ecf