You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you running the latest v3 release? The list of releases is here.
Did you check the manual for your release? The v3 manual is here.
Did you perform a search about this feature? Here's the GitHub guide about searching.
What problems are there currenty?
shell completions is only possible for commands - not for flags
ShellCompletionFunc does not provide what the user has already entered in the prompt
What problem does this solve?
Currently urfave/cli allows for customizing shell completion only for commands.
The Go module that does the best job at shell completions is cobra. Here are docs for it. urfave/cli is not Cobra and I hope it will never become one – it's much more lightweight, minimal, and fun - but I strongly believe that shell completions are a very useful feature.
Additionally, both ShellComplete on flags and on command should provide the content of the prompt, so the developer can e.g. filter out duplicated completions:
To avoid reinventing the wheel, completion shell scripts could be taken from Cobra (link). Deep dive & research is required to see if it fits into urfave/cli.
@bartekpacia I love this! Most of my recent programmable completion experience has been with click so the signature changes you are recommending make perfect sense to me.
Checklist
What problems are there currenty?
shell completions is only possible for commands - not for flags
ShellCompletionFunc
does not provide what the user has already entered in the promptWhat problem does this solve?
Currently
urfave/cli
allows for customizing shell completion only for commands.The Go module that does the best job at shell completions is cobra. Here are docs for it.
urfave/cli
is not Cobra and I hope it will never become one – it's much more lightweight, minimal, and fun - but I strongly believe that shell completions are a very useful feature.Proposed solution
ShellComplete
func for flags, for example:Additionally, both
ShellComplete
on flags and on command should provide the content of the prompt, so the developer can e.g. filter out duplicated completions:To avoid reinventing the wheel, completion shell scripts could be taken from Cobra (link). Deep dive & research is required to see if it fits into urfave/cli.
Summary of proposed changes
change type of
ShellCompleteFunc
from:to:
The presence and name of
ShellCompDirective
is tentative – but it's useful in Cobra.This ideally should be done before v3 stable gets released.
add
ShellComplete
field to all the flags –StringFlag
,IntFlag
. (What aboutBoolFlag
?)Describe alternatives you've considered
None.
See also
The text was updated successfully, but these errors were encountered: