From 7a0415cfd70a02b2280d27556c6c54cef1c86e1a Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 15 Apr 1999 18:18:42 +0000 Subject: zsh-3.1.5-pws-11 --- Completion/User/_rcs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Completion/User/_rcs') diff --git a/Completion/User/_rcs b/Completion/User/_rcs index 537db6278..5a751605c 100644 --- a/Completion/User/_rcs +++ b/Completion/User/_rcs @@ -1,9 +1,11 @@ #defcomp co ci rcs -[[ $COMMAND = ci || $COMMAND = rcs ]] && _files +local nm=$compstate[nmatches] -if [[ $NMATCHES -eq 0 && -d RCS && $COMMAND != ci ]]; then +[[ $words[1] = ci || $words[1] = rcs ]] && _files + +if [[ $compstate[nmatches] -eq nm && -d RCS && $words[1] != ci ]]; then local rep rep=(RCS/$PREFIX*$SUFFIX,v(:t:s/\,v//)) - (( $#rep )) && compadd -m $rep + (( $#rep )) && compadd - $rep fi -- cgit 1.4.1