mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
7ff6c86b77
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
9 lines
233 B
Bash
9 lines
233 B
Bash
# bash completion for pip
|
|
|
|
_pip_completion()
|
|
{
|
|
COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
|
|
COMP_CWORD=$COMP_CWORD \
|
|
PIP_AUTO_COMPLETE=1 $1 ) )
|
|
}
|
|
complete -o default -F _pip_completion pip
|