Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
68d51bd7
Commit
68d51bd7
authored
May 26, 2020
by
Marc Cornellà
Browse files
virtualenvwrapper: fix load and detection logic
parent
375978fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh
View file @
68d51bd7
function
{
# search in these locations for the init script:
for
f
in
$commands
[
virtualenvwrapper_lazy.sh]
\
$commands
[
virtualenvwrapper.sh]
\
/usr/share/virtualenvwrapper/virtualenvwrapper
{
_lazy,
}
.sh
\
/usr/local/bin/virtualenvwrapper
{
_lazy,
}
.sh
\
/etc/bash_completion.d/virtualenvwrapper
\
/usr/share/bash-completion/completions/virtualenvwrapper
\
$HOME
/.local/bin/virtualenvwrapper.sh
for
virtualenvwrapper
in
$commands
[
virtualenvwrapper_lazy.sh]
\
$commands
[
virtualenvwrapper.sh]
\
/usr/share/virtualenvwrapper/virtualenvwrapper
{
_lazy,
}
.sh
\
/usr/local/bin/virtualenvwrapper
{
_lazy,
}
.sh
\
/etc/bash_completion.d/virtualenvwrapper
\
/usr/share/bash-completion/completions/virtualenvwrapper
\
$HOME
/.local/bin/virtualenvwrapper.sh
do
if
[[
-f
$f
]]
;
then
source
$f
if
[[
-f
"
$virtualenvwrapper
"
]]
;
then
source
"
$virtualenvwrapper
"
return
fi
done
print
"[oh-my-zsh] virtualenvwrapper plugin: Cannot find virtualenvwrapper.sh.
\n
"
\
"Please install with
\`
pip install virtualenvwrapper
\`
"
>
&2
return
1
}
if
!
type
workon &>/dev/null
;
then
if
[[
$?
-eq
0
]]
&&
!
type
workon &>/dev/null
;
then
print
"[oh-my-zsh] virtualenvwrapper plugin: shell function 'workon' not defined.
\n
"
\
"Please check
${
virtualenvwrapper
}
"
>
&2
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment