1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-19 03:00:07 +00:00

Merge pull request #120 from partp/fix-virtualenv

Fixes `VIRTUAL_ENV_DISABLE_PROMPT` condition
This commit is contained in:
Ben Hilburn 2015-10-17 20:11:08 -07:00
commit 9f92995f61

View file

@ -879,7 +879,7 @@ prompt_vi_mode() {
# https://virtualenv.pypa.io/en/latest/
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n "$virtualenv_path" && -n "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then
if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
"$1_prompt_segment" "$0" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
fi
}