For example the following is a zsh completion function for command `foo`: ``` #compdef _foo foo compadd first second third fourth ``` So, if we type `foo <tab>` in the zsh terminal, it suggests first second third fourth. How can I do this using commando?