Per some of the discussion on here: https://github.com/creationix/nvm/pull/616#issuecomment-70540684 as reported by @patrick-steele-idem
Solution is to add -L to the find command inside nvm_ls. The tricky part is writing a test for it :-)
This seems to also be causing some of the issues incorrectly reported on #855.
Temporary workaround, in .zprofile (or .zshrc, if you prefer):
# you can use the real path instead of the command f you prefer
export NVM_DIR="$(realpath $HOME/.nvm)"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
Most helpful comment
Temporary workaround, in
.zprofile(or.zshrc, if you prefer):