1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 01:11:37 +02:00

Add D qualifier in _rcs.

This commit is contained in:
Bart Schaefer 2001-03-13 18:16:44 +00:00
parent 467ad8e65b
commit 64819aedac
2 changed files with 4 additions and 1 deletions

@ -1,5 +1,8 @@
2001-03-13 Bart Schaefer <schaefer@zsh.org>
* Zvi Har'El: 13619: Completion/User/_rcs: Add the D qualifier
when matching file names in the RCS subdirectory.
* 13613, 13620: Completion/User/_ncftp, Completion/User/_lftp:
Unify completion for ncftp and lftp in _ncftp (removed _lftp).

@ -5,7 +5,7 @@ local ret=1
if [[ -d RCS && $service != ci ]]; then
local rep expl
rep=(RCS/*,v(:t:s/\,v//))
rep=(RCS/*,v(D:t:s/\,v//))
(( $#rep )) && _wanted files expl 'RCS file' compadd -a rep && ret=0
fi