1
0
mirror of https://git.envs.net/envs/burrow.git synced 2024-07-27 00:14:30 +00:00
burrow/burrow.d
2018-01-20 15:02:34 -05:00

15 lines
308 B
D

_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