aboutsummaryrefslogtreecommitdiff
path: root/src/term/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/term/cell.rs')
-rw-r--r--src/term/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term/cell.rs b/src/term/cell.rs
index 259b6ac1..bd561482 100644
--- a/src/term/cell.rs
+++ b/src/term/cell.rs
@@ -114,7 +114,7 @@ impl Cell {
#[inline]
pub fn is_empty(&self) -> bool {
- self.c == ' '
+ (self.c == ' ' || self.c == '\t')
&& self.extra[0] == ' '
&& self.bg == Color::Named(NamedColor::Background)
&& !self.flags.intersects(Flags::INVERSE | Flags::UNDERLINE)