nushell/crates/nu-command/src/commands/prev.rs

43 lines
900 B
Rust
Raw Normal View History

2019-08-07 19:49:11 +02:00
use crate::prelude::*;
use nu_errors::ShellError;
2019-11-30 01:21:05 +01:00
use nu_protocol::{CommandAction, ReturnSuccess, Signature};
2019-08-07 19:49:11 +02:00
use nu_engine::WholeStreamCommand;
pub struct Previous;
impl WholeStreamCommand for Previous {
fn name(&self) -> &str {
"p"
}
fn signature(&self) -> Signature {
Signature::build("p")
}
fn usage(&self) -> &str {
"Go to previous shell."
}
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
2021-02-12 11:13:14 +01:00
Ok(previous(args))
}
}
fn previous(_args: CommandArgs) -> ActionStream {
2021-02-12 11:13:14 +01:00
vec![Ok(ReturnSuccess::Action(CommandAction::PreviousShell))].into()
2019-08-07 19:49:11 +02:00
}
#[cfg(test)]
mod tests {
use super::Previous;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
2021-02-12 11:13:14 +01:00
test_examples(Previous {})
}
}