aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/compositor.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2022-12-15 13:23:06 +0000
committerBlaž Hrastnik2022-12-15 13:23:06 +0000
commitec9aa6690244bccefac24037c9f7a659816bffdd (patch)
tree70aa42c0175d644d5d8f6da4c9cd2da229556fc1 /helix-term/src/compositor.rs
parent5c4a9cba9a14ca10437e979c884d2ccba78ef1e7 (diff)
Remove redraw to fix build
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r--helix-term/src/compositor.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs
index 18620b7b..9dad3620 100644
--- a/helix-term/src/compositor.rs
+++ b/helix-term/src/compositor.rs
@@ -197,10 +197,6 @@ impl Compositor {
.find(|component| component.id() == Some(id))
.and_then(|component| component.as_any_mut().downcast_mut())
}
-
- pub fn clear(&mut self) -> std::io::Result<()> {
- self.terminal.clear()
- }
}
// View casting, taken straight from Cursive