(c *cli.Command, command string)
| 7 | ) |
| 8 | |
| 9 | func CmdFlagsAutoComplete(c *cli.Command, command string) error { |
| 10 | if c.Name != command { |
| 11 | return nil |
| 12 | } |
| 13 | |
| 14 | if len(os.Args) > 1 { |
| 15 | DisplayFlags(c.Flags) |
| 16 | } |
| 17 | |
| 18 | return nil |
| 19 | } |
no test coverage detected