add search terms to ignore command (#6288)

This commit is contained in:
Darren Schroeder 2022-08-10 08:42:21 -05:00 committed by GitHub
parent c74254c2cb
commit 2e5d981a09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,