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
The virtualenv helper doesn't evaluate the output of run_deactivate_if_present() when leaving (src)
run_deactivate_if_present()
eval run_deactivate_if_present smartcd on-leave run_deactivate_if_present
This results in smartcd just printing the shell code instead of deactivating the virtualenv:
❯ cd [ "`type -w deactivate`" = "function" ] && deactivate
The text was updated successfully, but these errors were encountered:
I also suspect the test for deactivate being defined is broken under zsh. Here is what I see with type -w:
deactivate
type -w
❯ type -w deactivate deactivate: function ❯ echo $ZSH_VERSION 5.8
Sorry, something went wrong.
No branches or pull requests
The virtualenv helper doesn't evaluate the output of
run_deactivate_if_present()
when leaving (src)This results in smartcd just printing the shell code instead of deactivating the virtualenv:
The text was updated successfully, but these errors were encountered: