youtube-dl

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

commit 5f09bbff4df9e11d803e3af066c08167f7f7dcb6
parent c1f9c59d11c0a96be7caa0b4c6e90d900e3161c6
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Wed, 27 Nov 2013 00:42:59 +0100

[bash-completion] Complete the ':ythistory' keyword

Diffstat:
Mdevscripts/bash-completion.in | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in @@ -1,11 +1,11 @@ __youtube_dl() { - local cur prev opts fileopts diropts + local cur prev opts fileopts diropts keywords COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="{{flags}}" - keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater" + keywords=":ytfavorites :ytrecommended :ytsubscriptions :ytwatchlater :ythistory" fileopts="-a|--batch-file|--download-archive|--cookies" diropts="--cache-dir"