mirror of
https://github.com/nushell/nushell.git
synced 2025-04-06 10:08:27 +02: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, true, false, false, false) => CommandType::Custom,
|
||||||
(true, false, true, false, false) => CommandType::Keyword,
|
(true, false, true, false, false) => CommandType::Keyword,
|
||||||
(false, true, false, true, false) => CommandType::External,
|
(false, true, false, true, false) => CommandType::External,
|
||||||
(false, false, false, false, true) => CommandType::Plugin,
|
(true, false, false, false, true) => CommandType::Plugin,
|
||||||
_ => CommandType::Other,
|
_ => CommandType::Other,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user