feat(pipenv): standarize completion generation (#11424)

Co-authored-by: Carlo Sala <carlosalag@protonmail.com>

Closes #11423
This commit is contained in:
Alastair Rankine 2023-01-03 03:44:53 -05:00 committed by GitHub
parent 36f1055eee
commit 00c37b6991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,16 @@
# Pipenv completion if (( ! $+commands[pipenv] )); then
_pipenv() { return
eval $(env COMMANDLINE="${words[1,$CURRENT]}" _PIPENV_COMPLETE=complete-zsh pipenv) fi
}
compdef _pipenv pipenv # If the completion file doesn't exist yet, we need to autoload it and
# bind it to `pipenv`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_pipenv" ]]; then
typeset -g -A _comps
autoload -Uz _pipenv
_comps[pipenv]=_pipenv
fi
_PIPENV_COMPLETE=zsh_source pipenv >| "$ZSH_CACHE_DIR/completions/_pipenv" &|
# Automatic pipenv shell activation/deactivation # Automatic pipenv shell activation/deactivation
_togglePipenvShell() { _togglePipenvShell() {