Update init test for fish

This commit is contained in:
Harish Rajagopal 2023-03-05 10:27:18 +01:00
parent a8c1e3fc5f
commit 096a1c91f3
No known key found for this signature in database
GPG key ID: 6D3F9FC446023F9C

View file

@ -76,15 +76,19 @@ while set index (contains -i -- "${TMP}/pyenv/plugins/pyenv-virtualenv/shims" \$
set -eg PATH[\$index]; end; set -e index
set -gx PATH '${TMP}/pyenv/plugins/pyenv-virtualenv/shims' \$PATH;
set -gx PYENV_VIRTUALENV_INIT 1;
function _pyenv_virtualenv_hook --on-event fish_prompt;
function _pyenv_virtualenv_hook --on-variable PWD --on-variable PYENV_VERSION;
set -l ret \$status
if [ -n "\$VIRTUAL_ENV" ]
pyenv activate --quiet; or pyenv deactivate --quiet; or true
function _pyenv_activate_or_deactivate
pyenv activate --quiet || pyenv deactivate --quiet
end
_pyenv_activate_or_deactivate &
else
pyenv activate --quiet; or true
pyenv activate --quiet &
end
return \$ret
end
_pyenv_virtualenv_hook
EOS
}