summaryrefslogtreecommitdiff
path: root/.zcompdump
blob: 46b2e0224c6244980b0f6af43486d0abc5887806 (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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
#files: 491	version: 4.3.2

_comps=(
- _precommand
. _source
a2ps _a2ps
aaaa _hosts
aap _aap
acpi _acpi
acroread _acroread
admin _sccs
ali _mh
alias _alias
amaya _webbrowser
analyseplugin _analyseplugin
animate _imagemagick
anno _mh
ant _ant
antiword _antiword
apache2ctl _apachectl
apachectl _apachectl
apm _apm
appletviewer _java
apropos _man
apt-cache _apt
apt-cdrom _apt
apt-config _apt
apt-get _apt
aptitude _aptitude
apt-move _apt-move
apt-show-versions _apt-show-versions
arena _webbrowser
arp _arp
arping _arping
-array-value- _value
-assign-parameter- _assign
attr _attr
auto-apt _auto-apt
autoload _typeset
bash _sh
baz _baz
bg _jobs_bg
bindkey _bindkey
bison _bison
bogofilter _bogofilter
bogotune _bogofilter
bogoutil _bogofilter
-brace-parameter- _brace_parameter
brctl _brctl
btdownloadcurses _bittorrent
btdownloadgui _bittorrent
btdownloadheadless _bittorrent
btlaunchmany _bittorrent
btlaunchmanycurses _bittorrent
btmakemetafile _bittorrent
btreannounce _bittorrent
btrename _bittorrent
bts _bts
btshowmetainfo _bittorrent
bttrack _bittorrent
bug _bug
buildhash _ispell
builtin _builtin
bunzip2 _bzip2
burst _mh
bzcat _bzip2
bzip2 _bzip2
bzip2recover _bzip2
bzr _bzr
cal _cal
catchsegv _precommand
ccal _ccal
cd _cd
cdc _sccs
cdcd _cdcd
cdrecord _cdrecord
certtool _gnutls
cftp _twisted
chage _users
chdir _cd
chflags _chflags
chfn _users
chgrp _chown
chimera _webbrowser
chkconfig _chkconfig
chmod _chmod
chown _chown
chsh _users
ci _rcs
ckeygen _twisted
clear _nothing
co _rcs
comb _sccs
combine _imagemagick
command _command
-command- _autocd
-command-line- _normal
comp _mh
compdef _compdef
composite _imagemagick
compress _compress
conch _twisted
-condition- _condition
configure _configure
convert _imagemagick
cp _cp
cpio _cpio
cplay _cplay
csh _sh
curl _urls
cvs _cvs
cvsup _cvsup
cygcheck _cygcheck
cygcheck.exe _cygcheck
cygpath _cygpath
cygpath.exe _cygpath
cygrunsrv _cygrunsrv
cygrunsrv.exe _cygrunsrv
cygserver _cygserver
cygserver.exe _cygserver
cygstart _cygstart
cygstart.exe _cygstart
darcs _darcs
date _date
dch _debchange
dchroot _dchroot
dcop _dcop
dcopclient _dcop
dcopfind _dcop
dcopobject _dcop
dcopref _dcop
dcopstart _dcop
dd _dd
debchange _debchange
debdiff _debdiff
debfoster _debfoster
debsign _debsign
declare _typeset
-default- _default
defaults _defaults
delta _sccs
df _directories
dhclient _dhclient
dhclient3 _dhclient
dict _dict
diff _diff
diffstat _diffstat
dillo _webbrowser
dircmp _directories
dirs _dirs
disable _disable
disown _jobs_fg
display _imagemagick
dist _mh
dlocate _dlocate
dmake _make
domainname _yp
dosdel _floppy
dosread _floppy
dpkg _dpkg
dpkg-cross _dpkg-cross
dpkg-deb _dpkg
dpkg-query _dpkg
dpkg-reconfigure _dpkg
dpkg-source _dpkg_source
dput _dput
du _du
dumper _dumper
dumper.exe _dumper
dupload _dupload
dvibook _dvi
dviconcat _dvi
dvicopy _dvi
dvidvi _dvi
dvips _dvi
dviselect _dvi
dvitodvi _dvi
dvitype _dvi
ecasound _ecasound
echotc _echotc
echoti _echoti
egrep _grep
elinks _elinks
elm _elm
emulate _emulate
enable _enable
enscript _enscript
env _precommand
epsffit _psutils
-equal- _equal
eval _precommand
eview _vim
evim _vim
exec _precommand
exim _vim
explodepkg _pkgtool
export _typeset
express _webbrowser
extcheck _java
extractres _psutils
fakeroot _fakeroot
false _nothing
fc _fc
fetchmail _fetchmail
fg _jobs_fg
fgrep _grep
figlet _figlet
find _find
findaffix _ispell
finger _finger
fink _fink
firefox _webbrowser
-first- _first
fixdlsrps _psutils
fixfmps _psutils
fixmacps _psutils
fixpsditps _psutils
fixpspps _psutils
fixscribeps _psutils
fixtpps _psutils
fixwfwps _psutils
fixwpps _psutils
fixwwps _psutils
flasher _flasher
flex _flex
flist _mh
flists _mh
float _typeset
fned _zed
folder _mh
folders _mh
fortune _fortune
forw _mh
fsh _fsh
ftp _hosts
functions _typeset
fuser _fuser
fusermount _fusermount
fwhois _whois
g++ _gcc
galeon _webbrowser
gcc _gcc
gdb _gdb
gdiff _diff
get _sccs
getafm _psutils
getclip _getclip
getclip.exe _getclip
getconf _getconf
getent _getent
getfacl _getfacl
getfacl.exe _getfacl
getfattr _attr
getopts _vars
gex _vim
ggv _gnome-gv
ghostscript _gs
ghostview _pspdf
git _git
git-add _git
git-am _git
git-apply _git
git-applymbox _git
git-applypatch _git
git-archimport _git
git-bisect _git
git-branch _git
git-cat-file _git
git-checkout _git
git-checkout-index _git
git-check-ref-format _git
git-cherry _git
git-cherry-pick _git
git-clone _git
git-clone-pack _git
git-commit _git
git-commit-tree _git
git-convert-objects _git
git-count-objects _git
git-cvsimport _git
git-daemon _git
git-diff _git
git-diff-files _git
git-diff-index _git
git-diff-stages _git
git-diff-tree _git
git-fetch _git
git-fetch-pack _git
git-format-patch _git
git-fsck-objects _git
git-get-tar-commit-id _git
git-grep _git
git-hash-object _git
git-http-fetch _git
git-index-pack _git
git-init-db _git
git-local-fetch _git
git-log _git
git-lost-found _git
git-ls-files _git
git-ls-remote _git
git-ls-tree _git
git-mailinfo _git
git-mailsplit _git
git-merge _git
git-merge-base _git
git-merge-index _git
git-merge-one-file _git
git-mktag _git
git-mv _git
git-name-rev _git
git-octopus _git
git-pack-objects _git
git-patch-id _git
git-peek-remote _git
git-prune _git
git-prune-packed _git
git-pull _git
git-push _git
git-read-tree _git
git-rebase _git
git-receive-pack _git
git-relink _git
git-repack _git
git-request-pull _git
git-reset _git
git-resolve _git
git-revert _git
git-rev-list _git
git-send-email _git
git-send-pack _git
git-shortlog _git
git-show-branch _git
git-show-index _git
git-ssh-fetch _git
git-ssh-upload _git
git-status _git
git-stripspace _git
git-svnimport _git
git-symbolic-ref _git
git-tag _git
git-tar-tree _git
git-unpack-file _git
git-unpack-objects _git
git-update-index _git
git-update-ref _git
git-update-server-info _git
git-upload-pack _git
git-var _git
git-verify-pack _git
git-verify-tag _git
git-whatchanged _git
git-write-tree _git
global _global
gls _ls
gmake _make
gmplayer _mplayer
gnome-gv _gnome-gv
gnutls-cli _gnutls
gnutls-cli-debug _gnutls
gpg _gpg
gpgv _gpg
gphoto2 _gphoto2
gprof _gprof
gqview _gqview
grail _webbrowser
grep _grep
groff _groff
groupadd _user_admin
groupdel _groups
groupmod _user_admin
groups _users
gs _gs
gsbj _pspdf
gsdj _pspdf
gsdj500 _pspdf
gslj _pspdf
gslp _pspdf
gsnd _pspdf
gtar _tar
gunzip _gzip
gv _gv
gview _vim
gvim _vim
gvimdiff _vim
gzcat _gzip
gzilla _webbrowser
gzip _gzip
hash _hash
hdiutil _hdiutil
help _sccs
history _fc
host _hosts
hotjava _webbrowser
icombine _ispell
iconv _iconv
identify _imagemagick
ifconfig _ifconfig
ifdown _net_interfaces
ifup _net_interfaces
ijoin _ispell
import _imagemagick
inc _mh
includeres _psutils
info _texinfo
infocmp _terminals
insmod _modutils
install-info _texinfo
installpkg _pkgtool
integer _typeset
iptables _iptables
iptables-restore _iptables
iptables-save _iptables
irssi _irssi
ispell _ispell
iwconfig _iwconfig
jadetex _tex
jar _java
jarsigner _java
java _java
javac _java
javadoc _java
javah _java
javap _java
jdb _java
jobs _jobs_builtin
joe _joe
keytool _java
kfmclient _kfmclient
kill _kill
killall _killall
killall5 _killall
kldload _kld
kldunload _kld
knock _knock
konqueror _webbrowser
kpdf _pdf
ksh _sh
kvno _kvno
last _last
lastb _last
latex _tex
less _less
let _math
lftp _ncftp
light _webbrowser
limit _limit
linda _linda
links _links
lintian _lintian
linux _uml
loadkeys _loadkeys
local _typeset
log _nothing
logname _nothing
look _look
lore _twisted
losetup _losetup
lp _lp
lpq _lp
lpr _lp
lprm _lp
ls _ls
lscfg _lscfg
lsdev _lsdev
lslv _lslv
lsmod _modutils
lsof _lsof
lspv _lspv
lsvg _lsvg
lynx _lynx
lzop _lzop
m-a _module-assistant
madison _madison
mail _mail
Mail _mail
mailx _mail
make _make
makeinfo _texinfo
make-kpkg _make-kpkg
makepkg _pkgtool
man _man
manhole _twisted
mark _mh
-math- _math
mattrib _mtools
mcd _mtools
mcopy _mtools
mdel _mtools
mdeltree _mtools
mdir _mtools
mdu _mtools
mencal _mencal
mere _mere
merge _rcs
mergechanges _mergechanges
mformat _mtools
mgv _pspdf
mhlist _mh
mhmail _mh
mhn _mh
mhparam _mh
mhpath _mh
mhshow _mh
mhstore _mh
mii-tool _mii-tool
mkshortcut _mkshortcut
mkshortcut.exe _mkshortcut
mktap _twisted
mkzsh _mkzsh
mkzsh.exe _mkzsh
mlabel _mtools
mmd _mtools
mmm _webbrowser
mmount _mtools
mmove _mtools
modinfo _modutils
modprobe _modutils
module-assistant _module-assistant
mogrify _imagemagick
mondoarchive _mondo
montage _imagemagick
Mosaic _webbrowser
mount _mount
mozilla _mozilla
mozilla-firefox _mozilla
mozilla-xremote-client _mozilla
mpc _mpc
mplayer _mplayer
mrd _mtools
mread _mtools
mren _mtools
msgchk _mh
mt _mt
mtoolstest _mtools
mtr _mtr
mtype _mtools
munchlist _ispell
mush _mail
mutt _mutt
mx _hosts
mysql _mysql_utils
mysqladmin _mysql_utils
mysqldiff _mysqldiff
mysqldump _mysql_utils
mysqlimport _mysql_utils
mysqlshow _mysql_utils
nail _mail
native2ascii _java
nautilus _nautilus
nc _netcat
ncal _cal
ncftp _ncftp
ncl _nedit
nedit _nedit
nedit-nc _nedit
netcat _netcat
netrik _webbrowser
netscape _netscape
newgrp _groups
next _mh
nice _nice
nmap _nmap
nmblookup _samba
nocorrect _precommand
noglob _precommand
nohup _precommand
ns _hosts
nslookup _nslookup
ntalk _other_accounts
odme _object_classes
odmget _object_classes
odmshow _object_classes
ogg123 _vorbis
oggdec _vorbis
oggenc _vorbis
ogginfo _vorbis
open _open
opera _webbrowser
p4 _perforce
pack _pack
packf _mh
-parameter- _parameter
parsehdlist _urpmi
passwd _users
patch _patch
pcat _pack
pcred _pids
pdf2dsc _pdf
pdf2ps _pdf
pdffonts _pdf
pdfimages _pdf
pdfinfo _pdf
pdfjadetex _tex
pdflatex _tex
pdfopt _pdf
pdftopbm _pdf
pdftops _pdf
pdftotext _pdf
perl _perl
perldoc _perldoc
pfiles _pids
pflags _pids
phoenix _webbrowser
php _php
pick _mh
pine _pine
pinef _pine
ping _ping
piuparts _piuparts
pkg_add _bsd_pkg
pkg-config _pkg-config
pkg_create _bsd_pkg
pkg_delete _bsd_pkg
pkg_info _bsd_pkg
pkgtool _pkgtool
pldd _pids
pmake _make
pman _perl_modules
pmap _pids
pmcat _perl_modules
pmdesc _perl_modules
pmeth _perl_modules
pmexp _perl_modules
pmfunc _perl_modules
pmload _perl_modules
pmls _perl_modules
pmpath _perl_modules
pmvers _perl_modules
podgrep _perl_modules
podpath _perl_modules
podtoc _perl_modules
policytool _java
popd _directory_stack
postsuper _postfix
prcs _prcs
prev _mh
print _print
printenv _printenv
prompt _prompt
prs _sccs
prt _sccs
prun _pids
ps2ascii _pspdf
ps2epsi _ps
ps2pdf _ps
ps2pdf12 _ps
ps2pdf13 _ps
ps2pdf14 _ps
ps2pdfwr _ps
ps2ps _ps
psbook _psutils
pscp _pscp
pscp.exe _pscp
psig _pids
psmerge _psutils
psmulti _ps
psnup _psutils
psresize _psutils
psselect _psutils
pstack _pids
pstoedit _pspdf
pstop _pids
pstops _psutils
pstotgif _pspdf
pswrap _ps
ptree _pids
pump _pump
pushd _cd
putclip _putclip
putclip.exe _putclip
pwait _pids
pwdx _pids
pyhtmlizer _twisted
python _python
qiv _qiv
qtplay _qtplay
querybts _bug
quilt _quilt
r _fc
raggle _raggle
rake _rake
rar _rar
rc _sh
rcp _rlogin
rcs _rcs
rcsdiff _rcs
read _read
readonly _typeset
-redirect- _redirect
-redirect-,\<,bunzip2 _bzip2
-redirect-,\<,bzip2 _bzip2
-redirect-,\>,bzip2 _bzip2
-redirect-,\<,compress _compress
-redirect-,\>,compress _compress
-redirect-,-default-,-default- _files
-redirect-,\<,gunzip _gzip
-redirect-,\<,gzip _gzip
-redirect-,\>,gzip _gzip
-redirect-,\<,uncompress _compress
refile _mh
rehash _hash
removepkg _pkgtool
remsh _rlogin
renice _renice
repl _mh
reportbug _bug
retawq _webbrowser
rgview _vim
rgvim _vim
rlogin _rlogin
rmdel _sccs
rmdir _directories
rmf _mh
rmic _java
rmid _java
rmiregistry _java
rmm _mh
rmmod _modutils
rpm _rpm
rsh _rlogin
rsync _rsync
rtin _tin
rubber _rubber
rubber-info _rubber
rubber-pipe _rubber
ruby _ruby
rup _hosts
rusage _precommand
rview _vim
rvim _vim
rwho _hosts
sabcmd _sablotron
sact _sccs
scan _mh
sccs _sccs
sccsdiff _sccs
sched _sched
schroot _schroot
scp _ssh
screen _screen
sed _sed
serialver _java
service _service
set _set
setfattr _attr
setopt _setopt
sftp _ssh
sh _sh
shift _arrays
show _mh
showchar _psutils
showmount _showmount
skipstone _webbrowser
slitex _tex
slogin _ssh
slrn _slrn
smbclient _samba
smbcontrol _samba
smbstatus _samba
smit _smit
smitty _smit
soa _hosts
socket _socket
softwareupdate _softwareupdate
sortm _mh
source _source
spamassassin _spamassassin
sr _surfraw
srptool _gnutls
ssh _ssh
ssh-add _ssh
ssh-agent _ssh
sshfs _sshfs
ssh-keygen _ssh
star _tar
stat _stat
strip _strip
stty _stty
su _su
-subscript- _subscript
sudo _sudo
surfraw _surfraw
svn _subversion
svnadmin _subversion
svnadmin-static _subversion
sync _nothing
sysctl _sysctl
talk _other_accounts
tap2deb _twisted
tap2rpm _twisted
tapconvert _twisted
tar _tar
tcptraceroute _tcptraceroute
tcsh _sh
telnet _telnet
tex _tex
texi2dvi _texinfo
texindex _texinfo
tidy _tidy
-tilde- _tilde
time _precommand
times _nothing
tin _tin
tkconch _twisted
tkinfo _texinfo
tkmktap _twisted
tla _tla
totdconfig _totd
tpb _tpb
tpconfig _tpconfig
tpkg-debarch _toolchain-source
tpkg-install _toolchain-source
tpkg-install-libc _toolchain-source
tpkg-make _toolchain-source
tpkg-update _toolchain-source
tracepath _tracepath
tracepath6 _tracepath
traceroute _hosts
trap _trap
trial _twisted
true _nothing
tryaffix _ispell
ttyctl _ttyctl
tunctl _uml
tune2fs _tune2fs
twistd _twisted
txt _hosts
type _which
typeset _typeset
ulimit _ulimit
uml_mconsole _uml
uml_moo _uml
uml_switch _uml
umount _mount
unace _unace
unalias _aliases
uncompress _compress
unexpand _unexpand
unfunction _functions
unget _sccs
unhash _unhash
uniq _uniq
unlimit _limits
unpack _pack
unrar _rar
unset _vars
unsetopt _unsetopt
unzip _zip
update-alternatives _update-alternatives
update-rc.d _update-rc.d
upgradepkg _pkgtool
urpme _urpmi
urpmf _urpmi
urpmi _urpmi
urpmi.addmedia _urpmi
urpmi.removemedia _urpmi
urpmi.update _urpmi
urpmq _urpmi
urxvt _urxvt
uscan _uscan
useradd _user_admin
userdel _users
usermod _user_admin
val _sccs
valgrind _valgrind
-value- _value
-value-,ANT_ARGS,-default- _ant
-value-,CFLAGS,-default- _gcc
-value-,CPPFLAGS,-default- _gcc
-value-,-default-,-default- _value
-value-,DISPLAY,-default- _x_display
-value-,GREP_OPTIONS,-default- _grep
-value-,GZIP,-default- _gzip
-value-,LANG,-default- _locales
-value-,LANGUAGE,-default- _locales
-value-,LDFLAGS,-default- _gcc
-value-,LESSCHARSET,-default- _less
-value-,LESS,-default- _less
-value-,LPDEST,-default- _printers
-value-,P4CLIENT,-default- _perforce
-value-,P4MERGE,-default- _perforce
-value-,P4PORT,-default- _perforce
-value-,P4USER,-default- _perforce
-value-,PERLDOC,-default- _perldoc
-value-,PRINTER,-default- _printers
-value-,TERM,-default- _terminals
-value-,TERMINFO_DIRS,-default- _dir_list
-value-,TZ,-default- _time_zone
-value-,VALGRIND_OPTS,-default- _valgrind
-value-,WWW_HOME,-default- _urls
-value-,XML_CATALOG_FILES,-default- _xmlsoft
vared _vared
-vared- _in_vared
vim _vim
vimdiff _vim
vncserver _vnc
vncviewer _vnc
vserver _vserver
vux _vux
vuxctl _vux
w3m _w3m
wait _wait
wajig _wajig
wanna-build _wanna-build
websetroot _twisted
wget _wget
what _sccs
whatis _man
whence _which
where _which
whereis _whereis
which _which
whoami _nothing
whois _whois
whom _mh
wiggle _wiggle
write _users_on
www _webbrowser
xargs _xargs
xauth _xauth
xdpyinfo _x_utils
xdvi _xdvi
xev _x_utils
xfd _x_utils
xfig _xfig
xfontsel _x_utils
xhost _x_utils
xkill _x_utils
xli _xloadimage
xloadimage _xloadimage
xmllint _xmlsoft
xmodmap _xmodmap
xmosaic _webbrowser
xon _x_utils
xpdf _xpdf
xping _hosts
xrdb _x_utils
xscreensaver-command _xscreensaver
xset _xset
xsetbg _xloadimage
xsetroot _x_utils
xsltproc _xmlsoft
xterm _xterm
xtightvncviewer _vnc
xtp _imagemagick
xv _xv
xview _xloadimage
xvnc4viewer _vnc
xvncviewer _vnc
xwd _x_utils
xwininfo _x_utils
xwit _xwit
xwud _x_utils
yast _yast
yast2 _yast
ypbind _yp
ypcat _yp
ypmatch _yp
yppasswd _yp
yppoll _yp
yppush _yp
ypserv _yp
ypset _yp
ypwhich _yp
ypxfr _yp
ytalk _other_accounts
yum _yum
zcat _zcat
zcompile _zcompile
zcp _zmv
zdump _zdump
zed _zed
zen _webbrowser
zip _zip
zipinfo _zip
zle _zle
zln _zmv
zmail _mail
zmodload _zmodload
zmv _zmv
zone _hosts
zpty _zpty
zsh _sh
zstyle _zstyle
zxpdf _xpdf
)

_services=(
bzcat bunzip2
dch debchange
gzcat gunzip
Mail mail
mailx mail
nail mail
ncl nc
nedit-nc nc
pcat unpack
-redirect-,\<,bunzip2 bunzip2
-redirect-,\<,bzip2 bzip2
-redirect-,\>,bzip2 bunzip2
-redirect-,\<,compress compress
-redirect-,\>,compress uncompress
-redirect-,\<,gunzip gunzip
-redirect-,\<,gzip gzip
-redirect-,\>,gzip gunzip
-redirect-,\<,uncompress uncompress
remsh rsh
slogin ssh
svnadmin-static svnadmin
)

_patcomps=(
\*/\(init\|rc\[0-9S\]\#\).d/\* _init_d
zf\* _zftp
)

_postpatcomps=(
\(p\[bgpn\]m\*\|\*top\[bgpn\]m\) _pbm
\(texi\(2\*\|ndex\)\) _texi
\(tiff\*\|\*2tiff\|pal2rgb\) _tiff
-value-,\(ftp\|http\(\|s\)\)_proxy,-default- _urls
-value-,LC_\*,-default- _locales
-value-,\*path,-default- _directories
-value-,\*PATH,-default- _dir_list
-value-,RUBY\(LIB\|OPT\|PATH\),-default- _ruby
\*/X11\(\|R\[456\]\)/\* _x_arguments
yodl\(\|2\*\) _yodl
)

_compautos=(
_call_program +X
)

zle -C _bash_complete-word .complete-word _bash_completions
zle -C _bash_list-choices .list-choices _bash_completions
zle -C _complete_debug .complete-word _complete_debug
zle -C _complete_help .complete-word _complete_help
zle -C _complete_tag .complete-word _complete_tag
zle -C _correct_filename .complete-word _correct_filename
zle -C _correct_word .complete-word _correct_word
zle -C _expand_alias .complete-word _expand_alias
zle -C _expand_word .complete-word _expand_word
zle -C _history-complete-newer .complete-word _history_complete_word
zle -C _history-complete-older .complete-word _history_complete_word
zle -C _list_expansions .list-choices _expand_word
zle -C _most_recent_file .complete-word _most_recent_file
zle -C _next_tags .list-choices _next_tags
zle -C _read_comp .complete-word _read_comp
bindkey '^X^R' _read_comp
bindkey '^X?' _complete_debug
bindkey '^XC' _correct_filename
bindkey '^Xa' _expand_alias
bindkey '^Xc' _correct_word
bindkey '^Xd' _list_expansions
bindkey '^Xe' _expand_word
bindkey '^Xh' _complete_help
bindkey '^Xm' _most_recent_file
bindkey '^Xn' _next_tags
bindkey '^Xt' _complete_tag
bindkey '^X~' _bash_list-choices
bindkey '^[,' _history-complete-newer
bindkey '^[/' _history-complete-older
bindkey '^[~' _bash_complete-word

autoload -Uz _a2ps _aap _acpi _acroread _alias \
            _aliases _all_labels _all_matches _alternative _analyseplugin \
            _ant _antiword _apachectl _apm _approximate \
            _apt _aptitude _apt-move _apt-show-versions _arch_archives \
            _arch_namespace _arg_compile _arguments _arp _arping \
            _arrays _assign _attr _auto-apt _autocd \
            _bash_completions _baz _bindkey _bison _bittorrent \
            _bogofilter _brace_parameter _brctl _bsd_pkg _bts \
            _bug _builtin _bzip2 _bzr _cache_invalid \
            _cal _call_function _canonical_paths _ccal _cd \
            _cdcd _cdrecord _chflags _chkconfig _chmod \
            _chown _combination _command _command_names _compdef \
            _complete _complete_debug _complete_help _complete_tag _compress \
            _condition _configure _correct _correct_filename _correct_word \
            _cp _cpio _cplay _ctags_tags _cvs \
            _cvsup _cygcheck _cygpath _cygrunsrv _cygserver \
            _cygstart _darcs _date _dchroot _dcop \
            _dd _debchange _debdiff _debfoster _deb_packages \
            _debsign _default _defaults _describe _description \
            _dhclient _dict _dict_words _diff _diff_options \
            _diffstat _directories _directory_stack _dir_list _dirs \
            _disable _dispatch _dlocate _domains _dpkg \
            _dpkg-cross _dpkg_source _dput _du _dumper \
            _dupload _dvi _ecasound _echotc _echoti \
            _elinks _elm _email_addresses _emulate _enable \
            _enscript _equal _expand _expand_alias _expand_word \
            _fakeroot _fc _fetchmail _figlet _file_descriptors \
            _files _file_systems _find _finger _fink \
            _first _flasher _flex _floppy _fortune \
            _fsh _functions _fuser _fusermount _gcc \
            _gdb _generic _getclip _getconf _getent \
            _getfacl _git _global _global_tags _gnome-gv \
            _gnu_generic _gnutls _gpg _gphoto2 _gprof \
            _gqview _grep _groff _groups _gs \
            _guard _gv _gzip _hash _hdiutil \
            _history _history_complete_word _hosts _iconv _ifconfig \
            _ignored _imagemagick _init_d _in_vared _iptables \
            _irssi _ispell _iwconfig _java _java_class \
            _jobs _jobs_bg _jobs_builtin _jobs_fg _joe \
            _kfmclient _kill _killall _kld _knock \
            _kvno _last _less _limit _limits \
            _linda _links _lintian _list _loadkeys \
            _locales _logical_volumes _look _losetup _lp \
            _ls _lscfg _lsdev _lslv _lsof \
            _lspv _lsvg _lynx _lzop _mac_applications \
            _mac_files_for_application _madison _mail _mailboxes _main_complete \
            _make _make-kpkg _man _match _math \
            _mencal _menu _mere _mergechanges _message \
            _mh _mii-tool _mime_types _mkshortcut _mkzsh \
            _module-assistant _modutils _mondo _most_recent_file _mount \
            _mozilla _mpc _mplayer _mt _mtools \
            _mtr _multi_parts _mutt _my_accounts _mysqldiff \
            _mysql_utils _nautilus _ncftp _nedit _netcat \
            _net_interfaces _netscape _newsgroups _next_label _next_tags \
            _nice _nmap _normal _nothing _nslookup \
            _object_classes _oldlist _open _options _options_set \
            _options_unset _other_accounts _pack _parameter _parameters \
            _patch _path_files _pbm _pdf _perforce \
            _perl _perl_basepods _perldoc _perl_modules _php \
            _physical_volumes _pick_variant _pids _pine _ping \
            _piuparts _pkg-config _pkgtool _ports _postfix \
            _prcs _precommand _prefix _print _printenv \
            _printers _prompt _ps _pscp _pspdf \
            _psutils _pump _putclip _python _qiv \
            _qtplay _quilt _raggle _rake _rar \
            _rcs _read _read_comp _redirect _regex_arguments \
            _renice _requested _retrieve_cache _retrieve_mac_apps _rlogin \
            _rpm _rsync _rubber _ruby _sablotron \
            _samba _sccs _sched _schroot _screen \
            _sed _sep_parts _service _services _set \
            _set_command _setopt _setup _sh _showmount \
            _signals _slrn _smit _socket _softwareupdate \
            _source _spamassassin _ssh _sshfs _stat \
            _store_cache _strip _stty _su _sub_commands \
            _subscript _subversion _sudo _suffix_alias_files _surfraw \
            _sysctl _tags _tar _tar_archive _tcptraceroute \
            _telnet _terminals _tex _texi _texinfo \
            _tidy _tiff _tilde _tilde_files _time_zone \
            _tin _tla _toolchain-source _totd _tpb \
            _tpconfig _tracepath _trap _ttyctl _tune2fs \
            _twisted _typeset _ulimit _uml _unace \
            _unexpand _unhash _uniq _unsetopt _update-alternatives \
            _update-rc.d _urls _urpmi _urxvt _uscan \
            _user_admin _user_at_host _users _users_on _valgrind \
            _value _values _vared _vars _vim \
            _vnc _volume_groups _vorbis _vserver _vux \
            _w3m _wait _wajig _wanna-build _wanted \
            _webbrowser _wget _whereis _which _whois \
            _wiggle _xargs _x_arguments _xauth _x_borderwidth \
            _x_color _x_colormapid _x_cursor _x_display _xdvi \
            _x_extension _xfig _x_font _x_geometry _x_keysym \
            _xloadimage _x_locale _xmlsoft _x_modifier _xmodmap \
            _x_name _xpdf _x_resource _xscreensaver _x_selection_timeout \
            _xset _xt_arguments _xterm _x_title _xt_session_id \
            _x_utils _xv _x_visual _x_window _xwit \
            _yast _yodl _yp _yum _zcat \
            _zcompile _zdump _zed _zftp _zip \
            _zle _zmodload _zmv _zpty _zstyle
autoload -Uz +X _call_program

typeset -gUa _comp_assocs
_comp_assocs=(  )