2012-11-29 15:51:55 +00:00
|
|
|
__youtube-dl()
|
|
|
|
{
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2012-12-07 20:38:45 +00:00
|
|
|
opts="{{flags}}"
|
2013-08-30 18:11:53 +00:00
|
|
|
keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater"
|
2012-11-29 15:51:55 +00:00
|
|
|
|
2013-08-30 18:11:53 +00:00
|
|
|
if [[ ${cur} =~ : ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
elif [[ ${cur} == * ]] ; then
|
2012-11-29 15:51:55 +00:00
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
complete -F __youtube-dl youtube-dl
|