summaryrefslogtreecommitdiffstats
path: root/bash_completion
diff options
context:
space:
mode:
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion7
1 files changed, 5 insertions, 2 deletions
diff --git a/bash_completion b/bash_completion
index 0136f51..d0fde74 100644
--- a/bash_completion
+++ b/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=( ${COMPREPLY[@]:-} $( 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)