mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 11:50:07 +00:00
Merge pull request #1878 from spazm/virtualenv-cleanup
virtualenv cleanup: replaces subshell with prompt expansion.
This commit is contained in:
commit
b8af807b43
1 changed files with 3 additions and 4 deletions
|
@ -1,9 +1,8 @@
|
||||||
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
|
||||||
|
|
Loading…
Reference in a new issue