adding .zprofile with pip completion

This commit is contained in:
Rodolphe Breard 2014-12-20 11:28:15 +01:00
parent b87072b008
commit 7e965ee6e4

13
.zprofile Normal file
View file

@ -0,0 +1,13 @@
# pip zsh completion start
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
# pip zsh completion end