1
0
Fork 0

New repo skeleton, getting ready for PyPi

This commit is contained in:
Filippo Valsorda 2012-11-29 16:51:55 +01:00
commit cc51a7d4e0
9 changed files with 60 additions and 76 deletions

View file

@ -0,0 +1,14 @@
__youtube-dl()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
opts=""
if [[ ${cur} == * ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
}
complete -F __youtube-dl youtube-dl