forked from extern/nushell
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
@ -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 New Issue
Block a user