Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( CompleteCmds map[*ffcli.Command]CompleteFunc CompleteFlags map[*flag.Flag]CompleteFunc )
Functions ¶
func Complete ¶
func Complete(root *ffcli.Command, args []string, startFlags, descs bool) (words []string, dir cobra.ShellCompDirective, err error)
Complete returns the autocomplete suggestions for the root program and args.
The returned words do not necessarily need to be prefixed with the last arg which is being completed. For example, '--bool-flag=' will have completions 'true' and 'false'.
"HIDDEN: " is trimmed from the start of Flag Usage's.
Types ¶
type CompleteFunc ¶
type CompleteFunc func([]string) ([]string, cobra.ShellCompDirective, error)
Click to show internal directories.
Click to hide internal directories.