i'm using mac, and every time i use brew to install a program,
zsh completion are put in /usr/local/share/zsh/site-functions
how we can use them ?
thanks
see variable fpath
fpath=("/usr/local/share/zsh/site-functions" $fpath)
@souhaiebtar Does it work for you? I added that path to fpath but the completion still doesn't work.
@thezjy sorry for that, i think it does not work, i'm not quite sure, i will try to verify more
@thezjy it seem to be working, have you opened another tab after that,
maybe you need to type:
rm -f ~/.zcompdump; compinit
autoload -U compinit && compinit
exec zsh
@souhaiebtar It works! Thanks so much!
@thezjy y r welcome, good for you
Most helpful comment
@thezjy it seem to be working, have you opened another tab after that,
maybe you need to type:
source