2009-06-05 08:41:27 +02:00
|
|
|
# cvs(1) completion
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2009-06-05 08:41:27 +02:00
|
|
|
have cvs && {
|
|
|
|
set_prefix()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
[ -z ${prefix:-} ] || prefix=${cur%/*}/
|
|
|
|
[ -r ${prefix:-}CVS/Entries ] || prefix=""
|
2009-06-05 08:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get_entries()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
local IFS=$'\n'
|
|
|
|
[ -r ${prefix:-}CVS/Entries ] && \
|
|
|
|
entries=$(cut -d/ -f2 -s ${prefix:-}CVS/Entries)
|
2009-06-05 08:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get_modules()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
if [ -n "$prefix" ]; then
|
|
|
|
COMPREPLY=( $( command ls -d ${cvsroot}/${prefix}/!(CVSROOT) ) )
|
|
|
|
else
|
|
|
|
COMPREPLY=( $( command ls -d ${cvsroot}/!(CVSROOT) ) )
|
|
|
|
fi
|
2009-06-05 08:41:27 +02:00
|
|
|
}
|
|
|
|
|
2009-10-20 09:29:36 +03:00
|
|
|
_cvs_commands()
|
|
|
|
{
|
2009-10-20 20:57:18 +03:00
|
|
|
cvs --help-commands 2>&1 | awk '/^( *|\t)/ { print $1 }'
|
2009-10-20 09:29:36 +03:00
|
|
|
}
|
|
|
|
|
2009-10-20 20:58:27 +03:00
|
|
|
_cvs_options()
|
|
|
|
{
|
|
|
|
cvs --help-options 2>&1 | awk '/^( *|\t)-/ { print $1 }'
|
|
|
|
}
|
|
|
|
|
2009-10-20 21:17:28 +03:00
|
|
|
_cvs_command_options()
|
|
|
|
{
|
|
|
|
cvs --help $1 2>&1 | sed -ne 's/^[[:space:]]*\(-[^[:space:]=[]*\).*/\1/p'
|
|
|
|
}
|
|
|
|
|
2009-10-20 21:50:21 +03:00
|
|
|
_cvs_kflags()
|
|
|
|
{
|
|
|
|
COMPREPLY=( $( compgen -W 'kv kvl k o b v' -- "$cur" ) )
|
|
|
|
}
|
|
|
|
|
2009-06-05 08:41:27 +02:00
|
|
|
_cvs()
|
|
|
|
{
|
2009-10-20 21:50:21 +03:00
|
|
|
local cur prev count mode i cvsroot cvsroots pwd
|
2009-10-04 19:42:50 +02:00
|
|
|
local -a flags miss files entries changed newremoved
|
2009-06-05 08:41:27 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
2009-10-20 21:50:21 +03:00
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
2009-06-05 08:41:27 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
count=0
|
|
|
|
for i in "${COMP_WORDS[@]}"; do
|
|
|
|
[ $count -eq $COMP_CWORD ] && break
|
|
|
|
# Last parameter was the CVSROOT, now go back to mode selection
|
2009-11-23 20:08:52 +02:00
|
|
|
if [[ "${COMP_WORDS[((count))]}" == "$cvsroot" && "$mode" == cvsroot ]]; then
|
2009-10-04 19:42:50 +02:00
|
|
|
mode=""
|
|
|
|
fi
|
|
|
|
if [ -z "$mode" ]; then
|
|
|
|
case $i in
|
2009-10-20 21:51:47 +03:00
|
|
|
-H|--help)
|
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_commands )" -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-d)
|
|
|
|
mode=cvsroot
|
|
|
|
cvsroot=${COMP_WORDS[((count+1))]}
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
ad|add|new)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=add
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
adm|admin|rcs)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=admin
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
ann|annotate)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=annotate
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
checkout|co|get)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=checkout
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
com|commit|ci)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=commit
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
di|dif|diff)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=diff
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
ex|exp|export)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=export
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
edit|unedit)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=$i
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
hi|his|history)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=history
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
im|imp|import)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=import
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
re|rel|release)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=release
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
log|rlog)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=log
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
rdiff|patch)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=rdiff
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
remove|rm|delete)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=remove
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
rtag|rfreeze)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=rtag
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
st|stat|status)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=status
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
tag|freeze)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=tag
|
|
|
|
;;
|
2009-11-22 11:43:26 +01:00
|
|
|
up|upd|update)
|
2009-10-20 21:51:47 +03:00
|
|
|
mode=update
|
|
|
|
;;
|
2009-10-04 19:42:50 +02:00
|
|
|
esac
|
|
|
|
elif [[ "$i" = -* ]]; then
|
|
|
|
flags=( "${flags[@]}" $i )
|
|
|
|
fi
|
|
|
|
count=$((++count))
|
|
|
|
done
|
2009-06-05 08:41:27 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
case "$mode" in
|
|
|
|
add)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-m)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" != -* ]]; then
|
|
|
|
set_prefix
|
2009-11-23 20:08:52 +02:00
|
|
|
if [[ $COMP_CWORD -gt 1 && -r ${prefix:-}CVS/Entries ]]; then
|
2009-10-04 19:42:50 +02:00
|
|
|
get_entries
|
|
|
|
[ -z "$cur" ] && \
|
|
|
|
files=$( command ls -Ad !(CVS) ) || \
|
|
|
|
files=$( command ls -d ${cur}* 2>/dev/null )
|
|
|
|
for i in "${entries[@]}"; do
|
|
|
|
files=( ${files[@]/#$i//} )
|
|
|
|
done
|
|
|
|
COMPREPLY=( $( compgen -X '*~' -W '${files[@]}' -- $cur ) )
|
|
|
|
fi
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
admin)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-a|-A|-b|-c|-e|-l|-m|-n|-N|-o|-s|-t-|-u)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-t)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" = -* ]]; then
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
annotate)
|
2009-10-20 21:50:21 +03:00
|
|
|
[[ "$prev" == -@(r|D) ]] && return 0
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" = -* ]]; then
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
else
|
|
|
|
get_entries
|
|
|
|
COMPREPLY=( $( compgen -W '${entries[@]}' -- "$cur" ) )
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
checkout)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-r|-D|j)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-d)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" != -* ]]; then
|
|
|
|
[ -z "$cvsroot" ] && cvsroot=$CVSROOT
|
|
|
|
COMPREPLY=( $( cvs -d "$cvsroot" co -c 2> /dev/null | \
|
|
|
|
awk '{print $1}' ) )
|
|
|
|
COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
commit)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-m|-r)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-F)
|
|
|
|
_filedir
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
set_prefix
|
2009-06-05 08:41:27 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" != -* ]] && [ -r ${prefix:-}CVS/Entries ]; then
|
|
|
|
# if $COMP_CVS_REMOTE is not null, 'cvs commit' will
|
|
|
|
# complete on remotely checked-out files (requires
|
|
|
|
# passwordless access to the remote repository
|
|
|
|
if [ -n "${COMP_CVS_REMOTE:-}" ]; then
|
|
|
|
# this is the least computationally intensive
|
|
|
|
# way found so far, but other changes
|
|
|
|
# (something other than changed/removed/new)
|
|
|
|
# may be missing
|
|
|
|
changed=( $( cvs -q diff --brief 2>&1 | \
|
|
|
|
sed -ne 's/^Files [^ ]* and \([^ ]*\) differ$/\1/p' ) )
|
|
|
|
newremoved=( $( cvs -q diff --brief 2>&1 | \
|
|
|
|
sed -ne 's/^cvs diff: \([^ ]*\) .*, no comparison available$/\1/p' ) )
|
|
|
|
COMPREPLY=( $( compgen -W '${changed[@]:-} \
|
|
|
|
${newremoved[@]:-}' -- "$cur" ) )
|
|
|
|
else
|
2009-10-22 12:04:29 +03:00
|
|
|
COMPREPLY=( $(compgen -o default -- "$cur") )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
cvsroot)
|
|
|
|
if [ -r ~/.cvspass ]; then
|
|
|
|
# Ugly escaping because of bash treating ':' specially
|
2009-11-04 00:16:06 +02:00
|
|
|
cvsroots=$( sed -e 's/^[^ ]* //' -e 's/:/\\:/g' ~/.cvspass )
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=( $( compgen -W '$cvsroots' -- "$cur" ) )
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
export)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-r|-D)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-d)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" != -* ]]; then
|
|
|
|
[ -z "$cvsroot" ] && cvsroot=$CVSROOT
|
|
|
|
COMPREPLY=( $( cvs -d "$cvsroot" co -c | awk '{print $1}' ) )
|
|
|
|
COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$cur" ) )
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
2009-10-04 19:42:50 +02:00
|
|
|
-- "$cur" ) )
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
diff)
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
|
|
_longopt diff
|
|
|
|
else
|
|
|
|
get_entries
|
|
|
|
COMPREPLY=( $( compgen -W '${entries[@]:-}' -- "$cur" ) )
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
remove)
|
|
|
|
if [[ "$cur" != -* ]]; then
|
|
|
|
set_prefix
|
2009-11-23 20:08:52 +02:00
|
|
|
if [[ $COMP_CWORD -gt 1 && -r ${prefix:-}CVS/Entries ]]; then
|
2009-10-04 19:42:50 +02:00
|
|
|
get_entries
|
|
|
|
# find out what files are missing
|
|
|
|
for i in "${entries[@]}"; do
|
|
|
|
[ ! -r "$i" ] && miss=( "${miss[@]}" $i )
|
|
|
|
done
|
|
|
|
COMPREPLY=( $(compgen -W '${miss[@]:-}' -- "$cur") )
|
|
|
|
fi
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
import)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-I|-b|-m|-W)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" != -* ]]; then
|
|
|
|
# starts with same algorithm as checkout
|
|
|
|
[ -z "$cvsroot" ] && cvsroot=$CVSROOT
|
|
|
|
prefix=${cur%/*}
|
|
|
|
if [ -r ${cvsroot}/${prefix} ]; then
|
|
|
|
get_modules
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]#$cvsroot} )
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]#\/} )
|
|
|
|
fi
|
|
|
|
pwd=$( pwd )
|
|
|
|
pwd=${pwd##*/}
|
|
|
|
COMPREPLY=( $( compgen -W '${COMPREPLY[@]} $pwd' -- $cur ) )
|
|
|
|
else
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
update)
|
2009-10-20 21:50:21 +03:00
|
|
|
case "$prev" in
|
|
|
|
-r|-D|-j|-I|-W)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-k)
|
|
|
|
_cvs_kflags
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" = -* ]]; then
|
2009-10-20 21:17:28 +03:00
|
|
|
COMPREPLY=( $( compgen -W "$( _cvs_command_options $mode )" \
|
|
|
|
-- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
"")
|
2009-10-20 22:08:18 +03:00
|
|
|
case "$prev" in
|
|
|
|
-T)
|
|
|
|
_filedir -d
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-e|-s)
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-z)
|
|
|
|
COMPREPLY=( $( compgen -W '1 2 3 4 5 6 7 8 9' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-20 20:58:27 +03:00
|
|
|
COMPREPLY=( $( compgen -W '$( _cvs_commands ) $( _cvs_options ) \
|
2009-10-20 09:29:36 +03:00
|
|
|
--help --help-commands --help-options --version' -- "$cur" ) )
|
2009-10-04 19:42:50 +02:00
|
|
|
;;
|
|
|
|
esac
|
2009-06-05 08:41:27 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
return 0
|
2009-06-05 08:41:27 +02:00
|
|
|
}
|
2009-10-22 12:04:29 +03:00
|
|
|
complete -F _cvs -o default cvs
|
2009-06-05 08:41:27 +02:00
|
|
|
}
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|