blob: 80241eb26b96d71648fbbd3fa2e26d80d683ee24 (
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
|
#compdef pkg
## vim:ft=zsh
local values
#local arguments
values=(
'add'
'changelog'
'changeroot'
'delete'
'info'
'install'
'list'
'list-all'
'local-update'
'log'
'remote-update'
'remove'
'status'
'update'
'upgrade'
)
#arguments=(
# '*:file:_path_files -W /home/derf/packages'
#)
_values -w -s ' ' 'pkg function' $values
#_arguments -s $arguments
|