1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00
zsh/Completion/User/_rcs
2000-04-05 11:28:08 +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 - $rep
fi