1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-04-04 22:09:11 +00:00

Add HasCustomFlagCompletion method to Command struct for flag completion validation

This commit is contained in:
Francis Nickels 2025-03-03 14:31:20 -08:00
parent 3736e5e7b8
commit 39a6bbba47

View file

@ -1607,6 +1607,17 @@ func (c *Command) HasSubCommands() bool {
return len(c.commands) > 0
}
// IsAvailableCommand determines if a command is available as a non-help command
// (this includes all non deprecated/hidden commands).
func (c *Command) HasCustomFlagCompletion() bool {
if c.ValidArgsFunction == nil {
return false
}
return c.AllowCustomFlagCompletions
}
// IsAvailableCommand determines if a command is available as a non-help command
// (this includes all non deprecated/hidden commands).
func (c *Command) IsAvailableCommand() bool {