mirror of
https://github.com/nushell/nushell.git
synced 2024-12-23 23:49:44 +01:00
fix plugin detection in help commands (#7088)
This commit is contained in:
parent
312e9bf5d6
commit
3e56e81d06
@ -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,
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user