diff --git a/.zprofile b/.zprofile new file mode 100644 index 0000000..3f100be --- /dev/null +++ b/.zprofile @@ -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 +