* Test commands for proper names and search terms Assert that the `Command.name()` is equal to `Signature.name` Check that search terms are not just substrings of the command name as they would not help finding the command. * Clean up search terms Remove redundant terms that just replicate the command name. Try to eliminate substring between search terms, clean up where necessary.
61 lines
1.2 KiB
Rust
61 lines
1.2 KiB
Rust
use nu_engine::get_full_help;
|
|
use nu_protocol::{
|
|
ast::Call,
|
|
engine::{Command, EngineState, Stack},
|
|
Category, IntoPipelineData, PipelineData, ShellError, Signature, Value,
|
|
};
|
|
|
|
#[derive(Clone)]
|
|
pub struct Date;
|
|
|
|
impl Command for Date {
|
|
fn name(&self) -> &str {
|
|
"date"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("date").category(Category::Date)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Date-related commands"
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec![
|
|
"time",
|
|
"now",
|
|
"today",
|
|
"tomorrow",
|
|
"yesterday",
|
|
"weekday",
|
|
"weekday_name",
|
|
"timezone",
|
|
]
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
_input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
date(engine_state, stack, call)
|
|
}
|
|
}
|
|
|
|
fn date(
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let head = call.head;
|
|
|
|
Ok(Value::String {
|
|
val: get_full_help(&Date.signature(), &Date.examples(), engine_state, stack),
|
|
span: head,
|
|
}
|
|
.into_pipeline_data())
|
|
}
|