zola/completions/zola.bash

188 lines
5.5 KiB
Bash
Raw Normal View History

_zola() {
local i cur prev opts cmds
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${i}" in
zola)
cmd="zola"
;;
build)
cmd+="__build"
;;
2019-06-21 07:04:05 +00:00
check)
cmd+="__check"
;;
help)
cmd+="__help"
;;
init)
cmd+="__init"
;;
serve)
cmd+="__serve"
;;
*)
;;
esac
done
case "${cmd}" in
zola)
2019-06-21 07:04:05 +00:00
opts=" -h -V -c --help --version --config init build serve check help"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
2018-03-16 18:11:08 +00:00
--config)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
2018-03-16 18:11:08 +00:00
return 0
;;
-c)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
2018-03-16 18:11:08 +00:00
return 0
;;
*)
COMPREPLY=()
;;
esac
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
zola__build)
2019-08-25 17:15:12 +00:00
opts=" -h -V -u -o --drafts --help --version --base-url --output-dir "
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--base-url)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-u)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--output-dir)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-o)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
zola__check)
2019-08-25 17:15:12 +00:00
opts=" -h -V --drafts --help --version "
2019-06-21 07:04:05 +00:00
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
zola__help)
opts=" -h -V --help --version "
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
*)
COMPREPLY=()
;;
esac
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
zola__init)
opts=" -h -V --help --version <name> "
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
*)
COMPREPLY=()
;;
esac
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
zola__serve)
2019-08-25 17:15:12 +00:00
opts=" -O -h -V -i -p -o -u --watch-only --drafts --open --help --version --interface --port --output-dir --base-url "
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--interface)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-i)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--port)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-p)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--output-dir)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-o)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
2018-02-02 16:37:30 +00:00
--base-url)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
2018-02-02 16:37:30 +00:00
return 0
;;
-u)
2019-06-21 07:04:05 +00:00
COMPREPLY=($(compgen -f "${cur}"))
2018-02-02 16:37:30 +00:00
return 0
;;
*)
COMPREPLY=()
;;
esac
2019-06-21 07:04:05 +00:00
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
complete -F _zola -o bashdefault -o default zola