-
Notifications
You must be signed in to change notification settings - Fork 1
/
_apttool.zsh
139 lines (133 loc) · 2.71 KB
/
_apttool.zsh
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env zsh
#compdef apttool
_message_next_arg()
{
argcount=0
for word in "${words[@][2,-1]}"
do
if [[ $word != -* ]] ; then
((argcount++))
fi
done
if [[ $argcount -le ${#myargs[@]} ]] ; then
_message -r $myargs[$argcount]
if [[ $myargs[$argcount] =~ ".*file.*" || $myargs[$argcount] =~ ".*path.*" ]] ; then
_files
fi
fi
}
_apttool ()
{
local context state state_descr line
typeset -A opt_args
if [[ $words[$CURRENT] == -* ]] ; then
_arguments -C \
':command:->command' \
'(-?)-?' \
'(--examples)--examples' \
'(-h)-h' \
'(--help)--help' \
'(-v)-v' \
'(--version)--version' \
'(-c=-)-c=-' \
'(--containsfile=-)--containsfile=-' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-n)-n' \
'(--names)--names' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-i)-i' \
'(--install)--install' \
'(-d)-d' \
'(--delete)--delete' \
'(-p)-p' \
'(--purge)--purge' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-e)-e' \
'(--executables)--executables' \
'(-f)-f' \
'(--files)--files' \
'(-S)-S' \
'(--suggests)--suggests' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-s)-s' \
'(--short)--short' \
'(-P)-P' \
'(--dependencies)--dependencies' \
'(-R)-R' \
'(--reversedeps)--reversedeps' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-I)-I' \
'(--INSTALLED)--INSTALLED' \
'(-N)-N' \
'(--NOTINSTALLED)--NOTINSTALLED' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-s)-s' \
'(--short)--short' \
'(-H)-H' \
'(--history)--history' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-l)-l' \
'(--locate)--locate' \
'(-L)-L' \
'(--LOCATE)--LOCATE' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-s)-s' \
'(--short)--short' \
'(-u)-u' \
'(--update)--update' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-V)-V' \
'(--VERSION)--VERSION' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-a)-a' \
'(--all)--all' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-s)-s' \
'(--short)--short' \
'(-a)-a' \
'(--all)--all' \
'(-C)-C' \
'(--nocolor)--nocolor' \
'(-I)-I' \
'(--INSTALLED)--INSTALLED' \
'(-N)-N' \
'(--NOTINSTALLED)--NOTINSTALLED' \
'(-D)-D' \
'(--dev)--dev' \
'(-n)-n' \
'(--names)--names' \
'(-q)-q' \
'(--quiet)--quiet' \
'(-r)-r' \
'(--reverse)--reverse' \
'(-s)-s' \
'(--short)--short' \
'(-x)-x' \
'(--ignorecase)--ignorecase' \
else
myargs=('PACKAGES' 'PACKAGES' 'PACKAGES' 'QUERY' 'COUNT' 'PACKAGES' 'PACKAGES' 'PATTERNS')
_message_next_arg
fi
}
_apttool "$@"