mirror of
https://github.com/kennethreitz-archive/dotfiles.git
synced 2026-06-21 15:50:58 +00:00
10 lines
240 B
Bash
10 lines
240 B
Bash
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
|