adding a proper bash-completion generation
This commit is contained in:
parent
23109d6a9c
commit
bdff345529
2 changed files with 23 additions and 1 deletions
14
devscripts/bash_completion.template
Normal file
14
devscripts/bash_completion.template
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue