diff options
author | Allan Zhou <allanzp@gmail.com> | 2013-08-30 17:51:59 -0700 |
---|---|---|
committer | Allan Zhou <allanzp@gmail.com> | 2013-08-30 17:51:59 -0700 |
commit | 85f03346ebe38c0b4cd46ab64bf9b5825d12895a (patch) | |
tree | 2aa3c34c3380174cbb10df809c7607f26c19b018 /devscripts/bash-completion.in | |
parent | bdc6b3fc64a03045b8130cdc824ee3f6c15eeff1 (diff) | |
parent | 10f5c016ec6262e5d29327e97fe4f3d1127ccdff (diff) |
Merge remote-tracking branch 'upstream/master'
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 |