mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
add search terms to ignore command (#6288)
This commit is contained in:
parent
c74254c2cb
commit
2e5d981a09
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,10 @@ impl Command for Ignore {
|
|||
Signature::build("ignore").category(Category::Core)
|
||||
}
|
||||
|
||||
fn search_terms(&self) -> Vec<&str> {
|
||||
vec!["silent", "quiet", "out-null"]
|
||||
}
|
||||
|
||||
fn run(
|
||||
&self,
|
||||
_engine_state: &EngineState,
|
||||
|
|
Loading…
Reference in a new issue