Hi,

It looks like the new "header" command is not in the bash_completion script. I've attached a patch to add it.

...Just checking; yes, I did remember to attach it this time.  :)

--
Joe Green <[EMAIL PROTECTED]>
MontaVista Software, Inc.

Source: MontaVista Software, Inc. <[EMAIL PROTECTED]>
Type: Defect Fix
Disposition: submit to http://savannah.nongnu.org/projects/quilt

bash_completion doesn't include new quilt header command.

Index: quilt-0.42/bash_completion
===================================================================
--- quilt-0.42.orig/bash_completion
+++ quilt-0.42/bash_completion
@@ -96,8 +96,8 @@ _quilt_completion()
 
     # quilt sub commands 
     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'
+          grep header import new next patches pop previous push refresh \
+	  remove rename series setup snapshot top unapplied'
 
     # if no command were given, complete on commands
     if [[ $COMP_CWORD -eq 1 ]] ; then
@@ -185,6 +185,9 @@ _quilt_completion()
 	   _longopt grep
 	   COMPREPLY=( [EMAIL PROTECTED]:-} $( compgen -W "-h" -- $cur ) )
 	   ;;
+	header)
+	   COMPREPLY=( $( compgen -W "-a -e -h -r --backup --strip-diffstat --strip-trailing-whitespace $(quilt series)" -- $cur ) )
+	   ;;
 	import)
 	   case $prev in
 	     -p)
_______________________________________________
Quilt-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/quilt-dev

Reply via email to