Skip to content

Commit

Permalink
Added.
Browse files Browse the repository at this point in the history
  • Loading branch information
mv committed Dec 31, 2018
1 parent 04af4db commit fca887d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bash_completion.d/pip.bash-completion
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# pip bash completion start
_pip_completion()
{
COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
COMP_CWORD=$COMP_CWORD \
PIP_AUTO_COMPLETE=1 $1 ) )
}
complete -o default -F _pip_completion pip
# pip bash completion end

0 comments on commit fca887d

Please sign in to comment.