GenZshCompletionFile generates zsh completion file including descriptions.
(filename string)
| 23 | |
| 24 | // GenZshCompletionFile generates zsh completion file including descriptions. |
| 25 | func (c *Command) GenZshCompletionFile(filename string) error { |
| 26 | return c.genZshCompletionFile(filename, true) |
| 27 | } |
| 28 | |
| 29 | // GenZshCompletion generates zsh completion file including descriptions |
| 30 | // and writes it to the passed writer. |
nothing calls this directly
no test coverage detected