burrow/burrow.d

15 lines
308 B
D
Raw Normal View History

2018-01-20 20:02:34 +00:00
_burrow()
{
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="phlog recipe create-config update-git -v -h"
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
}
complete -F _burrow burrow