X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fbash-completion.in;h=ce893fcbe1a681e535452c35f5b833eea54b2d95;hb=efd6c574a2cabc860f54018af726cd291cbec868;hp=3b99a96145bedc1c397f89d216b01e53ed361634;hpb=f6152b4b64c1be14d94f65c71382cdb8cd6c6a47;p=youtube-dl diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in index 3b99a9614..ce893fcbe 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