dev-python/ebuildtester: Add bash-completion

Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Nicolas Bock
2018-02-20 10:26:49 -07:00
parent 2f0ffce0d6
commit 17ca3c97e3
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
_ebuildtester() {
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--help --portage-dir --atom --threads"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
case "${prev}" in
--portage-dir)
COMPREPLY=( $(compgen -o dirnames -A directory ${cur}) )
;;
esac
}
complete -F _ebuildtester ebuildtester