split rcs completion

This commit is contained in:
Guillaume Rousse 2009-05-27 18:45:51 +02:00
parent c6b816922c
commit 709aa84119
3 changed files with 40 additions and 37 deletions

View File

@ -74,6 +74,7 @@ bashcomp_DATA = contrib/ant \
contrib/rdesktop \ contrib/rdesktop \
contrib/repomanage \ contrib/repomanage \
contrib/ri \ contrib/ri \
contrib/rcs \
contrib/rpcdebug \ contrib/rpcdebug \
contrib/rpmcheck \ contrib/rpmcheck \
contrib/rrdtool \ contrib/rrdtool \

View File

@ -4110,43 +4110,6 @@ _perldoc()
complete -F _perldoc $default perldoc complete -F _perldoc $default perldoc
} }
# rcs(1) completion
#
have rcs &&
_rcs()
{
local cur prev file dir i
COMPREPLY=()
cur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
file=${cur##*/}
dir=${cur%/*}
# deal with relative directory
[ "$file" = "$dir" ] && dir=.
COMPREPLY=( $( compgen -f "$dir/RCS/$file" ) )
for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
file=${COMPREPLY[$i]##*/}
dir=${COMPREPLY[$i]%RCS/*}
COMPREPLY[$i]=$dir$file
done
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -G "$dir/$file*,v" ) )
for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
COMPREPLY[$i]=${COMPREPLY[$i]%,v}
done
# default to files if nothing returned and we're checking in.
# otherwise, default to directories
[ ${#COMPREPLY[@]} -eq 0 -a $1 = ci ] && _filedir || _filedir -d
} &&
complete -F _rcs $filenames ci co rlog rcs rcsdiff
# lilo(8) completion # lilo(8) completion
# #
have lilo && { have lilo && {

39
contrib/rcs Normal file
View File

@ -0,0 +1,39 @@
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
# ex: ts=8 sw=8 noet filetype=sh
#
# bash completion for rcs
have rcs &&
_rcs()
{
local cur prev file dir i
COMPREPLY=()
cur=`_get_cword`
prev=${COMP_WORDS[COMP_CWORD-1]}
file=${cur##*/}
dir=${cur%/*}
# deal with relative directory
[ "$file" = "$dir" ] && dir=.
COMPREPLY=( $( compgen -f "$dir/RCS/$file" ) )
for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
file=${COMPREPLY[$i]##*/}
dir=${COMPREPLY[$i]%RCS/*}
COMPREPLY[$i]=$dir$file
done
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -G "$dir/$file*,v" ) )
for (( i=0; i < ${#COMPREPLY[@]}; i++ )); do
COMPREPLY[$i]=${COMPREPLY[$i]%,v}
done
# default to files if nothing returned and we're checking in.
# otherwise, default to directories
[ ${#COMPREPLY[@]} -eq 0 -a $1 = ci ] && _filedir || _filedir -d
} &&
complete -F _rcs $filenames ci co rlog rcs rcsdiff