bash / zsh completion function in python / golang
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. I think I found few projects which help ...
Join discussion