0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(af-magic): fix python venv checking logic (#11495)

This commit is contained in:
shelfofclub 2023-02-14 20:44:23 +08:00 committed by GitHub
parent 416560c9bf
commit 69b5737daf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ function afmagic_dashes {
# if there is a python virtual environment and it is displayed in # if there is a python virtual environment and it is displayed in
# the prompt, account for it when returning the number of dashes # the prompt, account for it when returning the number of dashes
if [[ -n "$python_env" && "$PS1" = \(* ]]; then if [[ -n "$python_env" && "$PS1" = *\(${python_env}\)* ]]; then
echo $(( COLUMNS - ${#python_env} - 3 )) echo $(( COLUMNS - ${#python_env} - 3 ))
else else
echo $COLUMNS echo $COLUMNS