summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-04-15 15:58:55 +0200
committerrabite <rabite@posteo.de>2019-04-15 15:59:46 +0200
commit60220eaf1e7b41e392d3126d84195300715ac331 (patch)
tree980a837d3a640075039f9f9c17d055201265d488
parent14796f9342b5c7591b28b31e6cd3b744d32b123c (diff)
remove unnecessary call to reset
-rw-r--r--src/term.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.rs b/src/term.rs
index 4d9d228..272e9dd 100644
--- a/src/term.rs
+++ b/src/term.rs
@@ -40,7 +40,7 @@ impl Screen {
self.screen.lock().map(|mut screen| std::mem::drop(screen.take())).ok();
// Terminal stays fucked without this. Why?
- Ok(std::process::Command::new("reset").arg("-I").spawn()).log();
+ //Ok(std::process::Command::new("reset").arg("-I").spawn()).log();
}
pub fn reset_screen(&mut self) -> HResult<()> {