summaryrefslogtreecommitdiffstats
path: root/bash_completion
diff options
context:
space:
mode:
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion8
1 files changed, 6 insertions, 2 deletions
diff --git a/bash_completion b/bash_completion
index 0769a4e..82ea88b 100644
--- a/bash_completion
+++ b/bash_completion
@@ -95,8 +95,8 @@ _quilt_completion()
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 @@ _quilt_completion()
;;
esac
;;
+ annotate)
+ _quilt_comfile
+ COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "-h" -- $cur ) )
+ ;;
applied)
COMPREPLY=( $( compgen -W "-h $(quilt applied)" -- $cur ) )
;;