diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2018-11-19 19:04:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 19:04:26 +0300 |
commit | 2f4b15041fe31d85dc9ef705b818c3a0e6985da3 (patch) | |
tree | 2f8c73b48879e44866dcf206dfb58ed13fb22e30 | |
parent | d1e4c4c988de048092181c4403a263a6aa1bbdad (diff) | |
parent | 5c412b4d420a2226cbf8af4ab38c61154df858e4 (diff) |
Merge pull request #1079 from josselinauguste/master
[Bugfix] Update VIRTUAL_ENV_DISABLE_PROMPT value
-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 7077bfc8..79237385 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" && "$VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then + if [[ -n "$virtualenv_path" && -z "$VIRTUAL_ENV_DISABLE_PROMPT" ]]; then "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON' fi } |