X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/28d5370e4a3ed87a622c07b81844b14420e5bcba..34bfb8236336b5e77b689e55cc2e70a247efb96d:/devscripts/bash-completion.in diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in index 3b99a96..ce893fc 100644 --- a/devscripts/bash-completion.in +++ b/devscripts/bash-completion.in @@ -1,14 +1,18 @@ -__youtube-dl() +__youtube_dl() { local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" opts="{{flags}}" + keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater" - if [[ ${cur} == * ]] ; then + 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 +complete -F __youtube_dl youtube-dl