|
|
|
|
@ -1,7 +1,12 @@ |
|
|
|
|
virtualenvwrapper='virtualenvwrapper.sh' |
|
|
|
|
if (( $+commands[$virtualenvwrapper] )); then |
|
|
|
|
|
|
|
|
|
source ${${virtualenvwrapper}:c} |
|
|
|
|
|
|
|
|
|
if [[ "$WORKON_HOME" == "" ]]; then |
|
|
|
|
echo "\$WORKON_HOME is not defined so ZSH plugin virtualenvwrapper will not work" |
|
|
|
|
else |
|
|
|
|
|
|
|
|
|
if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then |
|
|
|
|
# Automatically activate Git projects's virtual environments based on the |
|
|
|
|
# directory name of the project. Virtual environment name can be overridden |
|
|
|
|
@ -54,6 +59,7 @@ if (( $+commands[$virtualenvwrapper] )); then |
|
|
|
|
set -A chpwd_functions workon_cwd |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
else |
|
|
|
|
print "zsh virtualenvwrapper plugin: Cannot find ${virtualenvwrapper}. Please install with \`pip install virtualenvwrapper\`." |
|
|
|
|
fi |
|
|
|
|
|