youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 9193c1eededf996378307a0c60bb1e7eeaa1b9da
parent 3243d0f7b669128c91c64816a9ca3502ae4e4094
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Fri, 30 Aug 2013 20:11:53 +0200

Add youtube keywords to the bash completion script

Diffstat:
Mdevscripts/bash-completion.in | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in @@ -4,8 +4,12 @@ __youtube-dl() 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