diff --git a/src/cli.rs b/src/cli.rs index a42351e..afa1fbf 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -99,17 +99,22 @@ impl ArgsBuilder { pub fn debug(&mut self, _: impl Into) -> &mut Self { self } +} +/// Clear the screen. #[cfg(target_family = "windows")] pub fn clear_screen() { +// TODO: clearscreen with powershell? let _ = Command::new("cmd") .arg("/c") .arg("tput reset || cls") .status(); } +/// Clear the screen. #[cfg(target_family = "unix")] pub fn clear_screen() { +// TODO: clear screen via control codes instead let _ = Command::new("tput").arg("reset").status(); }