diff options
author | Ismael Mejia <iemejia@gmail.com> | 2013-09-06 23:23:23 +0200 |
---|---|---|
committer | Ismael Mejia <iemejia@gmail.com> | 2013-09-06 23:24:41 +0200 |
commit | 72836fcee453386f4f16325c5b8fa4c1ba1bb442 (patch) | |
tree | 58efd36f4a56269a07774969e2ac385aacf8eae6 /devscripts/bash-completion.in | |
parent | d6e203b3dcef8f291b57021903e629d3e30e1f0b (diff) | |
parent | a7130543fa0368175740f5fa173ef920671db866 (diff) |
Merge branch 'master' into subtitles_rework
Diffstat (limited to 'devscripts/bash-completion.in')
-rw-r--r-- | devscripts/bash-completion.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in index 3b99a9614..bd10f63c2 100644 --- 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 |