add POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION

pull/93/head
romkatv 5 years ago
parent 93c24c0e2c
commit ca311575d6

@ -1975,10 +1975,15 @@ prompt_vi_mode() {
# Virtualenv: current working virtualenv # Virtualenv: current working virtualenv
# More information on virtualenv (Python): # More information on virtualenv (Python):
# https://virtualenv.pypa.io/en/latest/ # https://virtualenv.pypa.io/en/latest/
set_default POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION true
prompt_virtualenv() { prompt_virtualenv() {
if [[ -n "$VIRTUAL_ENV" ]]; then [[ -n $VIRTUAL_ENV ]] || return
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" 'PYTHON_ICON' 0 '' "${${${VIRTUAL_ENV:t}//\%/%%}//\\/\\\\}" local msg=''
if [[ $POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION == true ]] && _p9k_python_version; then
msg="$_P9K_RETVAL "
fi fi
msg+=${${${VIRTUAL_ENV:t}//\%/%%}//\\/\\\\}
"$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" 'PYTHON_ICON' 0 '' "$msg"
} }
function _p9k_read_pyenv_version_file() { function _p9k_read_pyenv_version_file() {

Loading…
Cancel
Save