mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
fix(pyenv)!: do not load if a virtualenv is present
BREAKING CHANGE: `pyenv` will not be loaded at startup anymore if a virtual env if found to avoid overwriting the expected python version. Closes #12589
This commit is contained in:
parent
2527959e79
commit
5c532a85cf
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
# if there is a virtualenv already loaded pyenv should not be loaded
|
||||
# see https://github.com/ohmyzsh/ohmyzsh/issues/12589
|
||||
[[ -n ${VIRTUAL_ENV:-} ]] && return
|
||||
|
||||
pyenv_config_warning() {
|
||||
[[ "$ZSH_PYENV_QUIET" != true ]] || return 0
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue