1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/scripts/completion/pip-completion.zsh
2009-11-07 04:46:30 +01:00

17 lines
411 B
Bash

#!/bin/sh
# pip command and option completion for zsh shell.
# You need to source this shell script with a command like this::
#
# source /path/to/pip-completion.zsh
#
function _pip_completion {
local words cword
read -Ac words
read -cn cword
reply=( $( COMP_WORDS="$words[*]" \
COMP_CWORD=$(( cword-1 )) \
PIP_AUTO_COMPLETE=1 $words[1] ) )
}
compctl -K _pip_completion pip