diff options
author | Clint Adams <clint@users.sourceforge.net> | 2002-05-31 05:02:38 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2002-05-31 05:02:38 +0000 |
commit | 5441412544b4175cd19cd2848360a3f0dee9ed8e (patch) | |
tree | bf9765ec0db652bee8aed045394c4c36c24d5fa3 /Completion/Unix/Command/_man | |
parent | 69b570e28c63a0e7e3f9caaad58aa3a14f9958d9 (diff) | |
download | zsh-5441412544b4175cd19cd2848360a3f0dee9ed8e.tar.gz zsh-5441412544b4175cd19cd2848360a3f0dee9ed8e.tar.xz zsh-5441412544b4175cd19cd2848360a3f0dee9ed8e.zip |
17266: check `manpath` even when $MANPATH is set.
Diffstat (limited to 'Completion/Unix/Command/_man')
-rw-r--r-- | Completion/Unix/Command/_man | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/Completion/Unix/Command/_man b/Completion/Unix/Command/_man index 44634369c..a7b014d1b 100644 --- a/Completion/Unix/Command/_man +++ b/Completion/Unix/Command/_man @@ -7,20 +7,24 @@ _man() { _files || return 0 fi - if (( ! $#manpath )); then + if (( ! $#_manpath )); then local mp - mp=($(manpath 2>/dev/null)) + mp=( ${(s.:.)$(manpath 2>/dev/null)} ) [[ "$mp" == *:* ]] && mp=( ${(s.:.)mp} ) - manpath=( $mp ) + if (( $#mp )); then + _manpath=( $mp ) + elif (( $#manpath )); then + _manpath=( $manpath ) + fi fi - (( $#manpath )) || manpath=( ${(s.:.)$(manpath 2>/dev/null)} ) || - manpath=( /usr/man(-/) /(opt|usr)/(dt|share|X11R6|local)/(cat|)man(-/) ) + (( $#_manpath )) || + _manpath=( /usr/man(-/) /(opt|usr)/(dt|share|X11R6|local)/(cat|)man(-/) ) # `sman' is the SGML manual directory for Solaris 7. # 1M is system administrator commands on SVR4 - mrd=(${^manpath/\%L/${LANG:-En_US.ASCII}}/mandb(N)) + mrd=(${^_manpath/\%L/${LANG:-En_US.ASCII}}/mandb(N)) local sect if [[ $OSTYPE = solaris* ]]; then @@ -34,10 +38,10 @@ _man() { fi if [[ $sect = (<->*|1M|l|n) || $sect = \(*\|*\) ]]; then - dirs=( $^manpath/(sman|man|cat)${~sect}/ ) + dirs=( $^_manpath/(sman|man|cat)${~sect}/ ) awk="\$2 == \"$sect\" {print \$1}" else - dirs=( $^manpath/(sman|man|cat)*/ ) + dirs=( $^_manpath/(sman|man|cat)*/ ) awk='{print $1}' fi if zstyle -t ":completion:${curcontext}:manuals" separate-sections; then |