2000-04-12 17:24:55 +02:00
|
|
|
#compdef man apropos whatis
|
|
|
|
|
|
|
|
local rep expl star approx mrd
|
|
|
|
|
2001-02-26 14:02:30 +01:00
|
|
|
if [[ $service == man ]] && (( $words[(I)-l] + $words[(I)--local-file] )); then
|
2000-09-03 23:45:37 +02:00
|
|
|
_files || return 0
|
|
|
|
fi
|
|
|
|
|
2000-04-12 17:24:55 +02:00
|
|
|
if [[ $compstate[pattern_match] != [^*] ]]; then
|
|
|
|
# If a string other than *, we just want correction, so no `*'.
|
|
|
|
star='*'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n $_comp_correct ]]; then
|
|
|
|
# If this is set, we are correcting with this many approximations.
|
|
|
|
approx="(#a${_comp_correct})"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if (( ! $#manpath )); then
|
|
|
|
local mp
|
|
|
|
mp=($(manpath 2>/dev/null))
|
|
|
|
[[ "$mp" == *:* ]] && mp=( ${(s.:.)mp} )
|
|
|
|
manpath=( $mp )
|
|
|
|
fi
|
|
|
|
|
|
|
|
(( $#manpath )) || manpath=( ${(s.:.)$(manpath 2>/dev/null)} ) ||
|
2000-10-06 15:01:51 +02:00
|
|
|
manpath=( /usr/man(-/) /(opt|usr)/(dt|share|X11R6|local)/(cat|)man(-/) )
|
2000-04-12 17:24:55 +02:00
|
|
|
|
|
|
|
# `sman' is the SGML manual directory for Solaris 7.
|
|
|
|
# 1M is system administrator commands on SVR4
|
|
|
|
|
2000-05-31 11:27:52 +02:00
|
|
|
mrd=(${^manpath/\%L/${LANG:-En_US.ASCII}}/mandb(N))
|
2000-04-12 17:24:55 +02:00
|
|
|
if [[ $words[2] = (<->*|1M|l|n) ]]; then
|
|
|
|
rep=(
|
2000-10-06 15:01:51 +02:00
|
|
|
$manpath/(sman|man|cat)${words[2]}/${~approx}$PREFIX${~star}$SUFFIX.*(:t) )
|
2000-04-12 19:12:54 +02:00
|
|
|
(($#mrd)) && rep[$#rep+1]=($(awk "\$2 == \"$words[2]\" {print \$1}" $mrd))
|
1999-04-15 20:05:38 +02:00
|
|
|
else
|
2000-10-06 15:01:51 +02:00
|
|
|
rep=( $manpath/(sman|man|cat)*/${~approx}$PREFIX${~star}$SUFFIX.*(:t) )
|
2000-04-12 17:24:55 +02:00
|
|
|
(($#mrd)) && rep[$#rep+1]=($(awk '{print $1}' $mrd))
|
1999-04-15 20:05:38 +02:00
|
|
|
fi
|
|
|
|
|
2000-04-12 17:24:55 +02:00
|
|
|
|
2000-07-19 11:03:29 +02:00
|
|
|
# Remove any compression suffix, then remove the minimum possible string
|
|
|
|
# beginning with .<->: that handles problem cases like files called
|
|
|
|
# `POSIX.1.5'.
|
2000-04-12 17:24:55 +02:00
|
|
|
(( $#rep )) && _wanted manuals expl 'manual page' \
|
2000-07-19 11:03:29 +02:00
|
|
|
compadd - ${${rep%%.(bz2|z|gz|Z)}%.<->*}
|