mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
18 lines
451 B
Text
18 lines
451 B
Text
__youtube_dl()
|
|
{
|
|
local cur prev opts
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
opts="{{flags}}"
|
|
keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater"
|
|
|
|
if [[ ${cur} =~ : ]]; then
|
|
COMPREPLY=( $(compgen -W "${keywords}" -- ${cur}) )
|
|
return 0
|
|
elif [[ ${cur} == * ]] ; then
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
return 0
|
|
fi
|
|
}
|
|
|
|
complete -F __youtube_dl youtube-dl
|