From 3e56e81d062f2cd4bc6e73e6df109d33f80b3f1c Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 10 Nov 2022 16:12:09 -0600 Subject: [PATCH] fix plugin detection in help commands (#7088) --- crates/nu-protocol/src/engine/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-protocol/src/engine/command.rs b/crates/nu-protocol/src/engine/command.rs index 9a54992230..625e354412 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, } }