fix(af-magic): fix logic for separator with virtualenv (#11518)

master
WaferJay 3 years ago committed by GitHub
parent aca048814b
commit b54ef89fab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      themes/af-magic.zsh-theme

@ -6,7 +6,8 @@
# dashed separator size
function afmagic_dashes {
# check either virtualenv or condaenv variables
local python_env="${VIRTUAL_ENV:-$CONDA_DEFAULT_ENV}"
local python_env_dir="${VIRTUAL_ENV:-$CONDA_DEFAULT_ENV}"
local python_env="${python_env_dir##*/}"
# if there is a python virtual environment and it is displayed in
# the prompt, account for it when returning the number of dashes

Loading…
Cancel
Save