cvs: Add CVS controlled file completions for admin and update.

This commit is contained in:
Ville Skyttä 2011-05-24 23:10:11 +03:00
parent af3f67f2e5
commit 44dd868077

View File

@ -186,6 +186,9 @@ _cvs()
if [[ "$cur" = -* ]]; then
_cvs_command_options "$1" $mode
else
get_entries
COMPREPLY=( $( compgen -W '${entries[@]}' -- "$cur" ) )
fi
;;
annotate)
@ -342,6 +345,9 @@ _cvs()
if [[ "$cur" = -* ]]; then
_cvs_command_options "$1" $mode
else
get_entries
COMPREPLY=( $( compgen -W '${entries[@]}' -- "$cur" ) )
fi
;;
"")