diff options
author | Ymage <heltem+git@o2php.com> | 2019-01-03 14:07:27 +0300 |
---|---|---|
committer | Ymage <heltem+git@o2php.com> | 2019-01-03 14:07:27 +0300 |
commit | a8db401808f6daf16710118bd7fb37f6b30b261a (patch) | |
tree | c82de51b4e3b5431a63c7ba91a161e3c5db44704 /powerlevel9k.zsh-theme | |
parent | 2f4b15041fe31d85dc9ef705b818c3a0e6985da3 (diff) |
[Bugfix] virtualenv prompt displaying
Fix #1127
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 79237385..7077bfc8 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1648,7 +1648,7 @@ prompt_vi_mode() { # https://virtualenv.pypa.io/en/latest/ prompt_virtualenv() { local virtualenv_path="$VIRTUAL_ENV" - if [[ -n "$virtualenv_path" && -z "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then + if [[ -n "$virtualenv_path" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON' fi } |