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
b8af807b
Commit
b8af807b
authored
Jun 12, 2013
by
Robby Russell
Browse files
Merge pull request #1878 from spazm/virtualenv-cleanup
virtualenv cleanup: replaces subshell with prompt expansion.
parents
5d6a06bd
894e1caa
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/virtualenv/virtualenv.plugin.zsh
View file @
b8af807b
function
virtualenv_prompt_info
(){
function
virtualenv_prompt_info
(){
local
virtualenv_path
=
"
$VIRTUAL_ENV
"
if
[[
-n
$VIRTUAL_ENV
]]
;
then
if
[[
-n
$virtualenv_path
]]
;
then
printf
"%s[%s] "
"%{
${
fg
[yellow]
}
%}"
${${
VIRTUAL_ENV
}
:t
}
local
virtualenv_name
=
`
basename
$virtualenv_path
`
printf
"%s[%s] "
"%{
${
fg
[yellow]
}
%}"
$virtualenv_name
fi
fi
}
}
# disables prompt mangling in virtual_env/bin/activate
export
VIRTUAL_ENV_DISABLE_PROMPT
=
1
export
VIRTUAL_ENV_DISABLE_PROMPT
=
1
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