aboutsummaryrefslogtreecommitdiffstats
path: root/src/async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/async.rs')
-rw-r--r--src/async.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/async.rs b/src/async.rs
index 86f4bdb..5861443 100644
--- a/src/async.rs
+++ b/src/async.rs
@@ -39,16 +39,14 @@ impl Textmode {
let next = vt100::Parser::new(rows, cols, 0);
let self_ = Self { cur, next };
- self_
- .write_stdout(b"\x1b7\x1b[?47h\x1b[2J\x1b[H\x1b[?25h")
- .await?;
+ self_.write_stdout(super::INIT).await?;
Ok(self_)
}
// TODO: without async drop or async closures, i'm not sure how to do
// better than this
pub async fn cleanup(&mut self) -> std::io::Result<()> {
- self.write_stdout(b"\x1b[?47l\x1b8\x1b[?25h").await
+ self.write_stdout(super::DEINIT).await
}
pub async fn refresh(&mut self) -> std::io::Result<()> {