Fixes `VIRTUAL_ENV_DISABLE_PROMPT` condition
This commit is contained in:
		
							parent
							
								
									62dee9824b
								
							
						
					
					
						commit
						ae035e537a
					
				| 
						 | 
					@ -866,7 +866,7 @@ prompt_vi_mode() {
 | 
				
			||||||
# https://virtualenv.pypa.io/en/latest/
 | 
					# https://virtualenv.pypa.io/en/latest/
 | 
				
			||||||
prompt_virtualenv() {
 | 
					prompt_virtualenv() {
 | 
				
			||||||
  local virtualenv_path="$VIRTUAL_ENV"
 | 
					  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"))"
 | 
					    "$1_prompt_segment" "$0" "blue" "$DEFAULT_COLOR" "($(basename "$virtualenv_path"))"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue