pretty: support truncating in %>, %< and %><
[gitweb.git] / contrib / completion / git-completion.bash
index f38579214fa17aeb2c15c73b6fe0ac5d1bca1de4..6df62c217321b4f66fd230a1b95f2b3cfe2becd2 100644 (file)
@@ -210,11 +210,11 @@ __gitcomp ()
                local c i=0 IFS=$' \t\n'
                for c in $1; do
                        c="$c${4-}"
-                       case $c in
-                       --*=*|*.) ;;
-                       *) c="$c " ;;
-                       esac
                        if [[ $c == "$cur_"* ]]; then
+                               case $c in
+                               --*=*|*.) ;;
+                               *) c="$c " ;;
+                               esac
                                COMPREPLY[i++]="${2-}$c"
                        fi
                done