Index: bash_completion =================================================================== RCS file: /cvsroot/quilt/quilt/bash_completion,v retrieving revision 1.14 diff -u -r1.14 bash_completion --- bash_completion 12 Jun 2005 12:37:56 -0000 1.14 +++ bash_completion 22 Jun 2005 18:26:04 -0000 @@ -95,8 +95,8 @@ prev=${COMP_WORDS[COMP_CWORD-1]} # quilt sub commands - cmds='add applied delete diff edit files fold fork graph grep \ - import new next patches pop previous push refresh remove \ + cmds='add annotate applied delete diff edit files fold fork graph \ + grep import new next patches pop previous push refresh remove \ rename series setup snapshot top unapplied' # if no command were given, complete on commands @@ -131,6 +131,10 @@ ;; esac ;; + annotate) + _quilt_comfile + COMPREPLY=( address@hidden:-} $( compgen -W "-h" -- $cur ) ) + ;; applied) COMPREPLY=( $( compgen -W "-h $(quilt applied)" -- $cur ) ) ;;