diff options
author | Ymage <heltem+git@o2php.com> | 2019-01-07 11:18:34 +0300 |
---|---|---|
committer | Ymage <heltem+git@o2php.com> | 2019-01-07 11:18:34 +0300 |
commit | 12e972486055dbb37279ef81ae4d2114e8221f19 (patch) | |
tree | 00c3d98e594284942746614787d79b6597392f03 /powerlevel9k.zsh-theme | |
parent | a8db401808f6daf16710118bd7fb37f6b30b261a (diff) |
Merge with @dritter proposal
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 7077bfc8..472dd949 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1648,7 +1648,12 @@ 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 + + # Early exit; $virtualenv_path must always be set. + [[ -z "$virtualenv_path" ]] && return + + # Check if VIRTUAL_ENV_DISABLE_PROMPT is set to false, or is a numerical value + if [[ "$VIRTUAL_ENV_DISABLE_PROMPT" == "false" ]] || (( VIRTUAL_ENV_DISABLE_PROMPT )); then "$1_prompt_segment" "$0" "$2" "blue" "$DEFAULT_COLOR" "$(basename "$virtualenv_path")" 'PYTHON_ICON' fi } |