aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/bash-completion.in
diff options
context:
space:
mode:
Diffstat (limited to 'devscripts/bash-completion.in')
-rw-r--r--devscripts/bash-completion.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/devscripts/bash-completion.in b/devscripts/bash-completion.in
index 3b99a96..bd10f63 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