You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
397 B
20 lines
397 B
4 years ago
|
#compdef -P pip[0-9.]#
|
||
|
#autoload
|
||
|
|
||
|
#
|
||
|
# Pip completion, delegating to pip to do all the completion work.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Indrajit Raychaudhuri <irc@indrajit.com>
|
||
|
#
|
||
|
|
||
|
if (( $+commands[$words[1]] )); then
|
||
|
|
||
|
function _pip_completion {
|
||
|
compadd -- $( COMP_WORDS="$words[*]" COMP_CWORD=$(( CURRENT - 1 )) \
|
||
|
PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )
|
||
|
}
|
||
|
_pip_completion "$@"
|
||
|
|
||
|
fi
|