mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
13 lines
304 B
Plaintext
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
|