mirror of
https://gitee.com/mirrors/ohmyzsh.git
synced 2026-07-30 11:25:18 +08:00
checks for $VIRTUAL_ENV and provides to basename in a function for the prompt.
10 lines
267 B
Bash
10 lines
267 B
Bash
function virtualenv_prompt_info(){
|
|
local virtualenv_path="$VIRTUAL_ENV"
|
|
if [[ -n $virtualenv_path ]]; then
|
|
local virtualenv_name=`basename $virtualenv_path`
|
|
printf "%s[%s] " "%{${fg[yellow]}%}" $virtualenv_name
|
|
fi
|
|
}
|
|
|
|
export VIRTUAL_ENV_DISABLE_PROMPT=1
|