blob: 97233e7ea6e6b14e7cfbfd56f8bf17cb15ebd03f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Bash completion function for contrarius
# Written by Mike Kelly
# vim: set et sw=4 sts=4 ts=4 ft=sh :
# NOTE: This is still a work in progress, don't expect it to work well or
# properly right now.
_contrarius() {
local cur prev opts
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
opts="--version -V \
--help -h \
--fetch -f \
--pretend -p \
--environment -E \
--show-reasons \
--stage -s \
--target -t \
--headers -H \
--always-rebuild -r \
--debug-build \
--verbose -v \
--log-level -L \
--no-colour -C \
--no-color \
--resume-command-template"
case "${cur}" in
-*)
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
return 0
;;
*)
case "${prev}" in
## Enum operators
--log-level|-L)
COMPREPLY=($(compgen -W "debug qa warning silent" -- "${cur}"))
return 0
;;
--show-reasons)
COMPREPLY=($(compgen -W "none summary full" -- "${cur}"))
return 0
;;
--stage|-s)
COMPREPLY=($(compgen -W "binutils minimal headers libc full" -- "${cur}"))
return 0
;;
--debug-build)
COMPREPLY=($(compgen -W "none split internal" -- "${cur}"))
return 0
;;
esac
;;
esac
}
complete -F _contrarius contrarius
|