在 bash 提示符左侧丢失了虚拟环境显示

在 bash 提示符左侧丢失了虚拟环境显示

我添加了 thy Holy 提示来显示我当前的分支,这样我就永远不会推送到 master。我们都使用它并且它有效,但我不再看到我目前正在使用的虚拟环境,这很麻烦。根据这个提示:有没有一种简单的方法可以重新获得我的(mysite-env)风格虚拟环境显示?

### Git prompt.
# Configure colors, if available.
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
c_reset='\[\e[0m\]'
c_user='\[\033[1;33m\]'
c_path='\[\e[0;33m\]'
c_git_clean='\[\e[0;36m\]'
c_git_dirty='\[\e[0;35m\]'
else
c_reset=
c_user=
c_path=
c_git_clean=
c_git_dirty=
fi

# Function to assemble the Git part of our prompt.
git_prompt ()
{
if ! git rev-parse --git-dir > /dev/null 2>&1; then
return 0
fi

git_branch=$(git branch 2>/dev/null| sed -n '/^\*/s/^\* //p')

if git diff --quiet 2>/dev/null >&2; then
git_color="$c_git_clean"
else
git_color="$c_git_dirty"
fi

echo " [$git_color$git_branch${c_reset}]"
}

# Thy holy prompt.
PROMPT_COMMAND='PS1="${c_user}\u${c_reset}@${c_user}\h${c_reset}:${c_path}\w${c_reset}$(git_prompt)\$ "'
### End git prompt.

我已打开 venv:

cchilders@worklaptop:~/work_projects/oursite [ckc/fix-checkbox-AMA-1234]$ 

谢谢。

答案1

这个家伙的创作已经足够了,我现在正在研究它:

https://gist.github.com/miki725/9783474

相关内容