nu_command/platform/
clear.rsuse crossterm::{
cursor::MoveTo,
terminal::{Clear as ClearCommand, ClearType},
QueueableCommand,
};
use nu_engine::command_prelude::*;
use std::io::Write;
#[derive(Clone)]
pub struct Clear;
impl Command for Clear {
fn name(&self) -> &str {
"clear"
}
fn description(&self) -> &str {
"Clear the terminal."
}
fn extra_description(&self) -> &str {
"By default clears the current screen and the off-screen scrollback buffer."
}
fn signature(&self) -> Signature {
Signature::build("clear")
.category(Category::Platform)
.input_output_types(vec![(Type::Nothing, Type::Nothing)])
.switch(
"keep-scrollback",
"Do not clear the scrollback history",
Some('k'),
)
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
call: &Call,
_input: PipelineData,
) -> Result<PipelineData, ShellError> {
match call.has_flag(engine_state, stack, "keep-scrollback")? {
true => {
std::io::stdout()
.queue(MoveTo(0, 0))?
.queue(ClearCommand(ClearType::All))?
.flush()?;
}
_ => {
std::io::stdout()
.queue(MoveTo(0, 0))?
.queue(ClearCommand(ClearType::All))?
.queue(ClearCommand(ClearType::Purge))?
.flush()?;
}
};
Ok(PipelineData::Empty)
}
fn examples(&self) -> Vec<Example> {
vec![
Example {
description: "Clear the terminal",
example: "clear",
result: None,
},
Example {
description: "Clear the terminal but not its scrollback history",
example: "clear --keep-scrollback",
result: None,
},
]
}
}