From b9d42d6a592603d34cb8b03813d1604c59b6912e Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 15 Aug 2005 17:11:17 +0000 Subject: 21565: better handle uncompresed manpages with .[0-9] in their names. --- Completion/Unix/Command/_man | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Completion/Unix/Command') diff --git a/Completion/Unix/Command/_man b/Completion/Unix/Command/_man index a7b014d1b..4b7669010 100644 --- a/Completion/Unix/Command/_man +++ b/Completion/Unix/Command/_man @@ -82,7 +82,7 @@ _man_pages() { pages=( ${(M)dirs:#*$sect/} ) compfiles -p pages '' '' "$matcher" '' dummy '*' - pages=( ${^~pages}(N:t:r) ) + pages=( ${^~pages}(N:t) ) (($#mrd)) && pages[$#pages+1]=($(awk $awk $mrd)) @@ -90,7 +90,7 @@ _man_pages() { # beginning with .<->: that handles problem cases like files called # `POSIX.1.5'. - compadd "$@" - ${pages%.(?|<->*)} + compadd "$@" - ${pages%.(?|<->*(|.gz|.bz2|.Z))} } _man "$@" -- cgit 1.4.1