Skip to content

Commit

Permalink
feat: add getters for flag completions (#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
avirtopeanu-ionos committed Sep 26, 2023
1 parent 0c72800 commit bd4d165
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions completions.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,25 @@ func (c *Command) RegisterFlagCompletionFunc(flagName string, f func(cmd *Comman
return nil
}

// GetFlagCompletion returns the completion function for the given flag, if available.
func GetFlagCompletion(flag *pflag.Flag) (func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective), bool) {
flagCompletionMutex.RLock()
defer flagCompletionMutex.RUnlock()

completionFunc, exists := flagCompletionFunctions[flag]
return completionFunc, exists
}

// GetFlagCompletionByName returns the completion function for the given flag in the command by name, if available.
func (c *Command) GetFlagCompletionByName(flagName string) (func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective), bool) {
flag := c.Flags().Lookup(flagName)
if flag == nil {
return nil, false
}

return GetFlagCompletion(flag)
}

// Returns a string listing the different directive enabled in the specified parameter
func (d ShellCompDirective) string() string {
var directives []string
Expand Down

0 comments on commit bd4d165

Please sign in to comment.