2021-02-24 11:45:56 -07:00
|
|
|
__yt_dlp()
|
2012-11-29 08:51:55 -07:00
|
|
|
{
|
2013-11-26 16:42:59 -07:00
|
|
|
local cur prev opts fileopts diropts keywords
|
2012-11-29 08:51:55 -07:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2013-11-26 16:41:30 -07:00
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2012-12-07 13:38:45 -07:00
|
|
|
opts="{{flags}}"
|
2013-11-26 16:42:59 -07:00
|
|
|
keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater :ythistory"
|
2014-01-05 03:28:01 -07:00
|
|
|
fileopts="-a|--batch-file|--download-archive|--cookies|--load-info"
|
2013-11-26 16:41:30 -07: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 08:51:55 -07:00
|
|
|
|
2013-08-30 12:11:53 -06:00
|
|
|
if [[ ${cur} =~ : ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
elif [[ ${cur} == * ]] ; then
|
2012-11-29 08:51:55 -07:00
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-02-24 11:45:56 -07:00
|
|
|
complete -F __yt_dlp yt-dlp
|