mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +02:00
fix plugin detection in help commands (#7088)
This commit is contained in:
@ -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,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user