forked from pool/quilt
22 lines
510 B
Diff
22 lines
510 B
Diff
From: Bernhard Walle <bwalle@suse.de>
|
|
Subject: [PATCH] Fix bash completion for 'quilt fold <TAB>'
|
|
References: 415762
|
|
|
|
|
|
Signed-off-by: Bernhard Walle <bwalle@suse.de>
|
|
|
|
---
|
|
bash_completion | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/bash_completion
|
|
+++ b/bash_completion
|
|
@@ -184,6 +184,7 @@ _quilt_completion()
|
|
COMPREPLY=( $( compgen -W "0 1" -- $cur ) )
|
|
;;
|
|
*)
|
|
+ _quilt_comfile
|
|
COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "-p" -- $cur ) )
|
|
;;
|
|
esac
|