We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cd
I'm using zoxide which creates an alias for cd
zoxide
This results in gvm throwing errors on startup of zsh.
gvm
/home/adonis/.gvm/scripts/env/cd:46: defining function based on alias `cd' /home/adonis/.gvm/scripts/env/cd:46: parse error near `()'
The text was updated successfully, but these errors were encountered:
did you find a fix for this?
Sorry, something went wrong.
I had this too, and just figured out how to solve it.
So the issue is that you already have an alias named cd. The solution is to either remove that alias, or just run unalias cd before that line. See https://stackoverflow.com/questions/76638009/zsh-script-is-throwing-a-syntax-error-parse-error-near.
unalias cd
Well, now I can't actually use cd at all, as in, when I type cd .. or cd any-dir, I don't actually change directory. FML, I give up.
cd ..
cd any-dir
No branches or pull requests
I'm using
zoxide
which creates an alias forcd
This results in
gvm
throwing errors on startup of zsh.The text was updated successfully, but these errors were encountered: