forked from extern/nushell
# Description Add search terms to the commands: `use` ("environment", "import"), `while` ("loop"), and `range` ("filter", "head", "tail"). # Tests + Formatting All completed successfully. --------- Co-authored-by: Stefan Holderbach <sholderbach@users.noreply.github.com>
This commit is contained in:
@ -33,6 +33,10 @@ impl Command for Range {
|
||||
"Return only the selected rows."
|
||||
}
|
||||
|
||||
fn search_terms(&self) -> Vec<&str> {
|
||||
vec!["filter", "head", "tail"]
|
||||
}
|
||||
|
||||
fn examples(&self) -> Vec<Example> {
|
||||
vec![
|
||||
Example {
|
||||
|
Reference in New Issue
Block a user