fix wordings

pull/269/head
Fatih Kadir Akın 2014-02-20 13:07:33 +02:00
parent ec2245abb1
commit acc0cf2613
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
SCM_THEME_PROMPT_PREFIX="${cyan} at ${green}" SCM_THEME_PROMPT_PREFIX="${cyan} on ${green}"
SCM_THEME_PROMPT_SUFFIX="" SCM_THEME_PROMPT_SUFFIX=""
SCM_THEME_PROMPT_DIRTY=" ${red}with changes" SCM_THEME_PROMPT_DIRTY=" ${red}with changes"
SCM_THEME_PROMPT_CLEAN="" SCM_THEME_PROMPT_CLEAN=""
@ -9,7 +9,7 @@ venv() {
if [ ! -z "$VIRTUAL_ENV" ] if [ ! -z "$VIRTUAL_ENV" ]
then then
local env=$VIRTUAL_ENV local env=$VIRTUAL_ENV
echo "${gray} on ${orange}${env##*/} " echo "${gray} in ${orange}${env##*/} "
fi fi
} }