GenZshCompletionNoDesc generates zsh completion file without descriptions and writes it to the passed writer.
(w io.Writer)
| 40 | // GenZshCompletionNoDesc generates zsh completion file without descriptions |
| 41 | // and writes it to the passed writer. |
| 42 | func (c *Command) GenZshCompletionNoDesc(w io.Writer) error { |
| 43 | return c.genZshCompletion(w, false) |
| 44 | } |
| 45 | |
| 46 | // MarkZshCompPositionalArgumentFile only worked for zsh and its behavior was |
| 47 | // not consistent with Bash completion. It has therefore been disabled. |