diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-12-11 07:52:44 -0800 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-12-11 07:52:44 -0800 |
commit | d050de77f94a5dc9071c0b459ba62cb09c6696c4 (patch) | |
tree | 3bea4b6975544ef76241ccf402de541da350b4ac /devscripts/bash-completion.template | |
parent | 4fb1acc212555e3e817f858dce964876eef75d85 (diff) | |
parent | 95eb771dcda47f948b050da85c7ff22539e3ee12 (diff) |
Merge pull request #580 from FiloSottile/master
The new shiny build system
Diffstat (limited to 'devscripts/bash-completion.template')
-rw-r--r-- | devscripts/bash-completion.template | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/devscripts/bash-completion.template b/devscripts/bash-completion.template new file mode 100644 index 000000000..3b99a9614 --- /dev/null +++ b/devscripts/bash-completion.template @@ -0,0 +1,14 @@ +__youtube-dl() +{ + local cur prev opts + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + opts="{{flags}}" + + if [[ ${cur} == * ]] ; then + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + fi +} + +complete -F __youtube-dl youtube-dl |