We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d62bc4 commit fc6d708Copy full SHA for fc6d708
completion.go
@@ -63,6 +63,10 @@ func AutocompleteAppAction(c *Context) error {
63
64
// transpose registered commands and flags to posener/complete equivalence
65
for _, command := range c.App.Commands {
66
+ // skip the completion commands itself
67
+ if command == shellAutoCompleteInstallCommand {
68
+ continue
69
+ }
70
subCmd := command.convertToPosenerCompleteCommand(c)
71
72
if command.Hidden == nil || !command.Hidden() {
0 commit comments