mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
Add search terms to reject
(#9996)
# Description This may be easy to find/confuse with `drop` # User-Facing Changes Users coming from SQL will be happier when using `help -f` or `F1` # Tests + Formatting None
This commit is contained in:
parent
7b1c7debcb
commit
3bd46fe27a
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,10 @@ impl Command for Reject {
|
||||||
"To remove a quantity of rows or columns, use `skip`, `drop`, or `drop column`."
|
"To remove a quantity of rows or columns, use `skip`, `drop`, or `drop column`."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
|
vec!["drop", "key"]
|
||||||
|
}
|
||||||
|
|
||||||
fn run(
|
fn run(
|
||||||
&self,
|
&self,
|
||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
|
|
Loading…
Reference in a new issue