Replies: 1 comment
-
Or a bit more practical example:
Hitting after the very last characters in the above out |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have a root command called 'cmd'.
Now I have a sub command hanging off this called "sub-command".
The cli.Command for "sub-command" defines 2 flags "--a, --b".
All commands have the "EnableShellCompletion" boolean set to true.
I'm using
zsh
. Should I expect to see completion forcmd subcommand --<Tab>
.My assumption was to see completion for
--a, --b
but instead the only completion I get is for--h, -help
essentially.Beta Was this translation helpful? Give feedback.
All reactions