mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
feat(virtualenvwrapper): disable lazy script and force full script with environment variable
This commit is contained in:
parent
11e22ed0b5
commit
2babe619a3
1 changed files with 7 additions and 3 deletions
|
@ -8,10 +8,14 @@ function {
|
||||||
/usr/share/bash-completion/completions/virtualenvwrapper \
|
/usr/share/bash-completion/completions/virtualenvwrapper \
|
||||||
$HOME/.local/bin/virtualenvwrapper.sh
|
$HOME/.local/bin/virtualenvwrapper.sh
|
||||||
do
|
do
|
||||||
if [[ -f "$virtualenvwrapper" ]]; then
|
if [[ -f "$virtualenvwrapper" ]]; then
|
||||||
source "$virtualenvwrapper"
|
if [[ $VIRTUALENVWRAPPER_NO_LAZY -eq 1 ]] && [[ $(echo $virtualenvwrapper | grep lazy) ]]; then
|
||||||
return
|
true
|
||||||
|
else
|
||||||
|
source "$virtualenvwrapper"
|
||||||
|
return
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
print "[oh-my-zsh] virtualenvwrapper plugin: Cannot find virtualenvwrapper.sh.\n"\
|
print "[oh-my-zsh] virtualenvwrapper plugin: Cannot find virtualenvwrapper.sh.\n"\
|
||||||
"Please install with \`pip install virtualenvwrapper\`" >&2
|
"Please install with \`pip install virtualenvwrapper\`" >&2
|
||||||
|
|
Loading…
Reference in a new issue