2010-09-27 14:02:12 +00:00
|
|
|
---
|
|
|
|
contrib/completion/git-completion.bash | 10 ++++++----
|
|
|
|
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
|
|
|
|
--- a/contrib/completion/git-completion.bash
|
|
|
|
+++ b/contrib/completion/git-completion.bash
|
2011-06-28 13:12:53 +00:00
|
|
|
@@ -77,10 +77,12 @@
|
|
|
|
autoload -U +X bashcompinit && bashcompinit
|
|
|
|
fi
|
2010-06-02 00:01:27 +00:00
|
|
|
|
|
|
|
-case "$COMP_WORDBREAKS" in
|
|
|
|
-*:*) : great ;;
|
|
|
|
-*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
|
|
-esac
|
|
|
|
+# SUSE-specific: We trust the system is consistent and do not let individual
|
|
|
|
+# scripts play ping-pong with the global $COMP_WORDBREAKS value.
|
|
|
|
+#case "$COMP_WORDBREAKS" in
|
|
|
|
+#*:*) : great ;;
|
|
|
|
+#*) COMP_WORDBREAKS="$COMP_WORDBREAKS:"
|
|
|
|
+#esac
|
|
|
|
|
|
|
|
# __gitdir accepts 0 or 1 arguments (i.e., location)
|
|
|
|
# returns location of .git repo
|