1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/User/_rcs
2000-05-31 09:38:25 +00:00

13 lines
304 B
Plaintext

#compdef co ci rcs
local nm=$compstate[nmatches] cmd="${words[1]:t}"
[[ $cmd = ci || $cmd = rcs ]] && _files
if [[ $compstate[nmatches] -eq nm && -d RCS && $cmd != ci ]]; then
local rep expl
rep=(RCS/$PREFIX*$SUFFIX,v(:t:s/\,v//))
(( $#rep )) && _wanted files expl 'RCS file' compadd -a rep
fi