2010-01-08 22:47:41 +00:00
|
|
|
# bash completion for rebar
|
|
|
|
|
|
|
|
_rebar()
|
|
|
|
{
|
2010-01-09 17:24:08 +00:00
|
|
|
local cur prev sopts lopts cmdsnvars
|
2010-01-08 22:47:41 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2010-05-03 09:38:27 +00:00
|
|
|
sopts="-h -c -v -V -f -j"
|
|
|
|
lopts=" --help --commands --verbose --force --jobs= --version"
|
2010-10-25 20:07:32 +00:00
|
|
|
cmdsnvars="build-plt check-plt check-deps clean compile \
|
|
|
|
create create-app create-node ct dialyze doc delete-deps eunit \
|
2010-12-09 18:45:58 +00:00
|
|
|
get-deps generate help list-templates update-deps version xref \
|
2010-11-29 23:16:46 +00:00
|
|
|
case= debug_info=1 force=1 jobs= suite= verbose=1 appid= \
|
|
|
|
skip_deps=1 template= template_dir="
|
2010-01-08 22:47:41 +00:00
|
|
|
|
|
|
|
if [[ ${cur} == --* ]] ; then
|
|
|
|
COMPREPLY=( $(compgen -W "${lopts}" -- ${cur}) )
|
|
|
|
elif [[ ${cur} == -* ]] ; then
|
|
|
|
COMPREPLY=( $(compgen -W "${sopts}" -- ${cur}) )
|
|
|
|
else
|
|
|
|
COMPREPLY=( $(compgen -W "${cmdsnvars}" -- ${cur}) )
|
|
|
|
fi
|
2010-01-10 09:38:05 +00:00
|
|
|
|
|
|
|
if [ -n "$COMPREPLY" ] ; then
|
|
|
|
# append space if matched
|
|
|
|
COMPREPLY="${COMPREPLY} "
|
|
|
|
# remove trailing space after equal sign
|
|
|
|
COMPREPLY=${COMPREPLY/%= /=}
|
|
|
|
fi
|
|
|
|
return 0
|
2010-01-08 22:47:41 +00:00
|
|
|
}
|
2010-01-09 17:24:08 +00:00
|
|
|
complete -o nospace -F _rebar rebar
|
2010-01-08 22:47:41 +00:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
|
|
|
# sh-basic-offset: 4
|
|
|
|
# sh-indent-comment: t
|
|
|
|
# indent-tabs-mode: nil
|
|
|
|
# End:
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|