diff --git a/crates/nu-protocol/src/engine/command.rs b/crates/nu-protocol/src/engine/command.rs index 9a5499223..625e35441 100644 --- a/crates/nu-protocol/src/engine/command.rs +++ b/crates/nu-protocol/src/engine/command.rs @@ -94,7 +94,7 @@ pub trait Command: Send + Sync + CommandClone { (true, true, false, false, false) => CommandType::Custom, (true, false, true, false, false) => CommandType::Keyword, (false, true, false, true, false) => CommandType::External, - (false, false, false, false, true) => CommandType::Plugin, + (true, false, false, false, true) => CommandType::Plugin, _ => CommandType::Other, } }