aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-01-07 09:54:10 +0100
committerGuido Günther <agx@sigxcpu.org>2011-01-07 09:58:16 +0100
commitd9ed28612f7504252928c6ace037e84081950bfc (patch)
treea4f4b68c19373e9c6dbd484a8d5dca012ee8621e /debian
parent3f05ebad49ee6f5fa6109aed1e656f10de16d514 (diff)
bash completion: avoid space after options taking an argument
This makes branch and tag completion more useful.
Diffstat (limited to 'debian')
-rw-r--r--debian/git-buildpackage.bash-completion7
1 files changed, 6 insertions, 1 deletions
diff --git a/debian/git-buildpackage.bash-completion b/debian/git-buildpackage.bash-completion
index 57b26758..8c61170d 100644
--- a/debian/git-buildpackage.bash-completion
+++ b/debian/git-buildpackage.bash-completion
@@ -60,7 +60,12 @@ _gbp_comp ()
return 0
fi
- COMPREPLY=($(compgen -W "$options" -- $cur))
+ # separate opts by tab so we can append a space to all options not ending
+ # with an equal sign
+ tab_opts=$(echo "$options" | sed -e 's/ \+/\t/g' -e 's/[^=]$/& /g')
+ type compopt &>/dev/null && compopt -o nospace
+ local IFS=$'\t\n'
+ COMPREPLY=($(compgen -W "$tab_opts" -- $cur))
}