Merge pull request #260 from thuandt/python-icon

PYTHON ICON for virtualenv prompt
This commit is contained in:
Ben Hilburn 2016-05-27 11:53:02 -04:00
commit 41888bf2a9
2 changed files with 7 additions and 4 deletions

View file

@ -931,7 +931,7 @@ prompt_vi_mode() {
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON'
fi
}