2020-09-02 18:25:25 +00:00
|
|
|
__youtube_dlc()
|
2012-11-29 15:51:55 +00:00
|
|
|
{
|
2013-11-26 23:42:59 +00:00
|
|
|
local cur prev opts fileopts diropts keywords
|
2012-11-29 15:51:55 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2013-11-26 23:41:30 +00:00
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2012-12-07 20:38:45 +00:00
|
|
|
opts="{{flags}}"
|
2013-11-26 23:42:59 +00:00
|
|
|
keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater :ythistory"
|
2014-01-05 10:28:01 +00:00
|
|
|
fileopts="-a|--batch-file|--download-archive|--cookies|--load-info"
|
2013-11-26 23:41:30 +00:00
|
|
|
diropts="--cache-dir"
|
|
|
|
|
|
|
|
if [[ ${prev} =~ ${fileopts} ]]; then
|
|
|
|
COMPREPLY=( $(compgen -f -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
elif [[ ${prev} =~ ${diropts} ]]; then
|
|
|
|
COMPREPLY=( $(compgen -d -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
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
|
|
|
|
}
|
|
|
|
|
2020-09-02 18:25:25 +00:00
|
|
|
complete -F __youtube_dlc youtube-dlc
|