mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 02:18:01 +00:00
python: Expand Python command pattern per convention
Use `(i)python[0-9.]#` as subscript for commands associative array,
following the convention [1] of detection python more exhaustively.
[1] 858b8de3d7/Completion/Unix/Command/_python (L1)
This commit is contained in:
parent
8d895a70a5
commit
52bf42f887
@ -50,7 +50,7 @@ fi
|
||||
unset local_pyenv
|
||||
|
||||
# Return if requirements are not found.
|
||||
if (( ! $#commands[(i)python[23]#] && ! $+functions[pyenv] && ! $+commands[conda] )); then
|
||||
if (( ! $+commands[(i)python[0-9.]#] && ! $+functions[pyenv] && ! $+commands[conda] )); then
|
||||
return 1
|
||||
fi
|
||||
|
||||
@ -136,8 +136,8 @@ if (( $+VIRTUALENVWRAPPER_VIRTUALENV || $+commands[virtualenv] )) \
|
||||
|
||||
if [[ $pyenv_virtualenvwrapper_plugin_found != "true" ]]; then
|
||||
# Fallback to standard 'virtualenvwrapper' if 'python' is available in '$path'.
|
||||
if (( ! $+VIRTUALENVWRAPPER_PYTHON )) && (( $#commands[(i)python[23]#] )); then
|
||||
VIRTUALENVWRAPPER_PYTHON=$commands[(i)python[23]#]
|
||||
if (( ! $+VIRTUALENVWRAPPER_PYTHON )) && (( $+commands[(i)python[0-9.]#] )); then
|
||||
VIRTUALENVWRAPPER_PYTHON=$commands[(i)python[0-9.]#]
|
||||
fi
|
||||
|
||||
virtualenvwrapper_sources=(
|
||||
|
Loading…
Reference in New Issue
Block a user