diff --git a/crates/nu-command/src/core_commands/ignore.rs b/crates/nu-command/src/core_commands/ignore.rs index 2fa68574cf..682506f404 100644 --- a/crates/nu-command/src/core_commands/ignore.rs +++ b/crates/nu-command/src/core_commands/ignore.rs @@ -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,