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
Ohmyzsh
Commits
e81782ac
Unverified
Commit
e81782ac
authored
Feb 07, 2020
by
Alastair Rankine
Committed by
GitHub
Feb 07, 2020
Browse files
virtualenvwrapper: rewrite init script location code (#8521)
parent
77aa1795
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh
View file @
e81782ac
virtualenvwrapper
=
'virtualenvwrapper.sh'
function
{
virtualenvwrapper_lazy
=
'virtualenvwrapper_lazy.sh'
# search in these locations for the init script:
for
f
in
$commands
[
virtualenvwrapper_lazy.sh]
\
if
((
$+
commands[
$virtualenvwrapper_lazy
]
))
;
then
$commands
[
virtualenvwrapper.sh]
\
function
{
/usr/share/virtualenvwrapper/virtualenvwrapper
{
_lazy,
}
.sh
\
setopt local_options
/usr/local/bin/virtualenvwrapper
{
_lazy,
}
.sh
\
unsetopt equals
/etc/bash_completion.d/virtualenvwrapper
\
virtualenvwrapper
=
${${
virtualenvwrapper_lazy
}
:c
}
/usr/share/bash-completion/completions/virtualenvwrapper
source
${${
virtualenvwrapper_lazy
}
:c
}
do
[[
-z
"
$WORKON_HOME
"
]]
&&
WORKON_HOME
=
"
$HOME
/.virtualenvs"
if
[[
-f
$f
]]
;
then
}
source
$f
elif
((
$+
commands[
$virtualenvwrapper
]
))
;
then
function
{
setopt local_options
unsetopt equals
source
${${
virtualenvwrapper
}
:c
}
}
elif
[[
-f
"/usr/local/bin/virtualenvwrapper.sh"
]]
;
then
function
{
setopt local_options
unsetopt equals
virtualenvwrapper
=
"/usr/local/bin/virtualenvwrapper.sh"
source
"/usr/local/bin/virtualenvwrapper.sh"
}
elif
[[
-f
"/usr/share/virtualenvwrapper/virtualenvwrapper.sh"
]]
;
then
function
{
setopt local_options
unsetopt equals
virtualenvwrapper
=
"/usr/share/virtualenvwrapper/virtualenvwrapper.sh"
source
"/usr/share/virtualenvwrapper/virtualenvwrapper.sh"
}
elif
[[
-f
"/etc/bash_completion.d/virtualenvwrapper"
]]
;
then
function
{
setopt local_options
unsetopt equals
virtualenvwrapper
=
"/etc/bash_completion.d/virtualenvwrapper"
source
"/etc/bash_completion.d/virtualenvwrapper"
}
else
print
"[oh-my-zsh] virtualenvwrapper plugin: Cannot find
${
virtualenvwrapper
}
.
\n
"
\
"Please install with
\`
pip install virtualenvwrapper
\`
"
>
&2
return
return
fi
fi
done
print
"[oh-my-zsh] virtualenvwrapper plugin: Cannot find virtualenvwrapper.sh.
\n
"
\
"Please install with
\`
pip install virtualenvwrapper
\`
"
>
&2
}
if
!
type
workon &>/dev/null
;
then
if
!
type
workon &>/dev/null
;
then
print
"[oh-my-zsh] virtualenvwrapper plugin: shell function 'workon' not defined.
\n
"
\
print
"[oh-my-zsh] virtualenvwrapper plugin: shell function 'workon' not defined.
\n
"
\
"Please check
${
virtualenvwrapper
}
"
>
&2
"Please check
${
virtualenvwrapper
}
"
>
&2
return
return
fi
fi
if
[[
"
$WORKON_HOME
"
==
""
]]
;
then
if
[[
-z
"
$WORKON_HOME
"
]]
;
then
print
"[oh-my-zsh]
\$
WORKON_HOME is not defined so plugin virtualenvwrapper will not work"
>
&2
WORKON_HOME
=
"
$HOME
/.virtualenvs"
return
fi
fi
if
[[
!
$DISABLE_VENV_CD
-eq
1
]]
;
then
if
[[
!
$DISABLE_VENV_CD
-eq
1
]]
;
then
...
...
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