-
Notifications
You must be signed in to change notification settings - Fork 2
/
completion.bash
67 lines (64 loc) · 1.77 KB
/
completion.bash
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
62
63
64
65
66
67
_pac() {
local cur prev words cword
_init_completion || return
if (( cword == 1 )) && [[ "$cur" == -* ]]; then
COMPREPLY=($(compgen -W '-h --help -V --version -s --status' -- "$cur"))
return
elif (( cword == 1 )); then
COMPREPLY=($(compgen -W 'in install rm remove arm autoremove clean
up upgrade se search if info files owner mark ls list' -- "$cur"))
return
fi
case "${words[1]}" in
install|in)
COMPREPLY=($(compgen -W '-h --help --asdeps --asexplicit --needed
-y --yes --overwrite' -- "$cur"))
return
;;
remove|rm)
COMPREPLY=($(compgen -W '-h --help -c --cascade -u --unneeded -n --nosave
-y --yes' -- "$cur"))
return
;;
autoremove|arm)
COMPREPLY=($(compgen -W '-h --help -n --nosave -y --yes' -- "$cur"))
return
;;
clean)
COMPREPLY=($(compgen -W '-h --help -a --all -y --yes' -- "$cur"))
return
;;
upgrade|up)
COMPREPLY=($(compgen -W '-h --help --ignore --ignoregroup -y --yes
--overwrite' -- "$cur"))
return
;;
search|se)
COMPREPLY=($(compgen -W '-h --help -i --installed -q --quiet' -- "$cur"))
return
;;
info|if)
COMPREPLY=($(compgen -W '-h --help -e --extended -q --quiet' -- "$cur"))
return
;;
owner)
COMPREPLY=($(compgen -W '-h --help -q --quiet' -- "$cur"))
_filedir
return
;;
files)
COMPREPLY=($(compgen -W '-h --help -q --quiet' -- "$cur"))
return
;;
mark)
COMPREPLY=($(compgen -W '-h --help -d --asdeps' -- "$cur"))
return
;;
list|ls)
COMPREPLY=($(compgen -W '-h --help -e --explicit -d --deps -n --native
-f --foreign -q --quiet' -- "$cur"))
return
;;
esac
}
complete -F _pac pac