diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:00:57 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:00:57 +0000 |
commit | 7f879a4103cd4a85c4cae091b484cefba7db5fc3 (patch) | |
tree | 2e276795dd10ca4be86179ef4d16c2e6e7a572a4 /Completion/User | |
parent | 40659f4965e556b83259633dfd9e81112da62f17 (diff) | |
download | zsh-7f879a4103cd4a85c4cae091b484cefba7db5fc3.tar.gz zsh-7f879a4103cd4a85c4cae091b484cefba7db5fc3.tar.xz zsh-7f879a4103cd4a85c4cae091b484cefba7db5fc3.zip |
moved to Completion/Unix/Command/_rcs
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_rcs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Completion/User/_rcs b/Completion/User/_rcs deleted file mode 100644 index 7ff3b8326..000000000 --- a/Completion/User/_rcs +++ /dev/null @@ -1,14 +0,0 @@ -#compdef co ci rcs - -local ret=1 - -if [[ -d RCS && $service != ci ]]; then - local rep expl - - rep=(RCS/*,v(D:t:s/\,v//)) - (( $#rep )) && _wanted files expl 'RCS file' compadd -a rep && ret=0 -fi - -[[ $service = ci || $service = rcs || ret -eq 1 ]] && _files && ret=0 - -return ret |