2013-10-19 06:13:46 +09:00
|
|
|
__youtube_dl()
|
2012-11-30 00:51:55 +09:00
|
|
|
{
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2012-12-08 05:38:45 +09:00
|
|
|
opts="{{flags}}"
|
2013-08-31 03:11:53 +09:00
|
|
|
keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater"
|
2012-11-30 00:51:55 +09:00
|
|
|
|
2013-08-31 03:11:53 +09:00
|
|
|
if [[ ${cur} =~ : ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
elif [[ ${cur} == * ]] ; then
|
2012-11-30 00:51:55 +09:00
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-10-19 06:13:46 +09:00
|
|
|
complete -F __youtube_dl youtube-dl
|