aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/zsh-completion
blob: c5e653f42fefb1e63fdf5eaac49de80754fd832b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Set up command completion for zsh
#
fetchmailauthtypes=(password kerberos kerberos_v5)
fetchmailprotocols=(auto pop2 pop3 apop rpop kpop sdps imap imap-k4 imap-gss etrn)
function fetchmailformattedinterfaces ()
{ reply=(`ifconfig|perl -e '$/="";while(<>){s/[\r\n]//g;if(/^(\w+\d*).*inet addr:([\d\.]+)/){print "$1/$2\n";}}'`) }
function fetchmailcompctl ()
{ reply=(`awk '{ print $2 }' < ~/.fetchmailrc` `fetchmail --help 2>&1| cut -c 7-19 | sed "s/,//g"`) }
compctl -K fetchmailcompctl \
	-x "C[-1,-L|--logfile]" -f \
	-  "C[-1,-f|--fetchmailrc]" -f \
	-  "C[-1,-i|--idfile]" -f \
	-  "C[-1,-I|--interface]" -K fetchmailformattedinterfaces \
	-  "C[-1,-M|--monitor]" -K fetchmailformattedinterfaces \
	-  "C[-1,-p|--protocol]" -k fetchmailprotocols \
	-  "C[-1,-A|--auth]" -k fetchmailauthtypes \
	-  "c[-1,--plugin]" -m \
	-  "c[-1,--plugout]" -m \
	-- fetchmail
"w"> = @CFLAGS@ -DDEBUG OBJS = triostr.o trio.o trionan.o TARGETLIB = libtrio.a TARGETINCS = trio.h triop.h triodef.h trionan.h triostr.h LDFLAGS = -L. -ltrio -lm AR = ar RANLIB = @RANLIB@ ERASE = rm -f MKDIR = mkdir -p GENDOC = doxygen PURIFY = purify PURIFYOPTIONS = -chain-length=16 -first-only=YES # Installation settings INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ prefix = @prefix@ exec_prefix = @exec_prefix@ includedir = @includedir@ libdir = @libdir@ all: $(TARGETLIB) $(TARGET) regression test: ./regression install: $(TARGETLIB) $(MKDIR) $(libdir) $(MKDIR) $(includedir) $(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB) for i in $(TARGET_INCS);do \ (set -x;$(INSTALL_DATA) $$i $(includedir)); \ done pure: $(TOBJS) $(OBJS) $(PURIFY) $(PURIFYOPTIONS) $(CC) $(CFLAGS) $^ $(LDFLAGS) regression: regression.o $(TARGETLIB) $(CC) $(CFLAGS) regression.o $(LDFLAGS) -o $@ example: example.o $(TARGETLIB) $(CC) $(CFLAGS) example.o $(LDFLAGS) -o $@ compare: compare.o $(TARGETLIB) $(CC) $(CFLAGS) compare.o $(LDFLAGS) -o $@ userdef: userdef.o $(TARGETLIB) $(CC) $(CFLAGS) userdef.o $(LDFLAGS) -o $@ $(TARGETLIB): $(OBJS) $(AR) ruv $(TARGETLIB) $(OBJS) $(RANLIB) $(TARGETLIB) doc:: $(GENDOC) doc/trio.cfg clean: $(ERASE) *~ core regression example $(TOBJS) $(OBJS) $(TARGET) $(TARGETLIB) example.o regression.o