Merge branch 'sp/maint-bash-completion-optim'

* sp/maint-bash-completion-optim:
  bash completion: Don't offer "a.." as a completion for "a."
  bash completion: Improve responsiveness of git-log completion
This commit is contained in:
Junio C Hamano
2008-07-13 16:41:02 -07:00

View File

@ -114,9 +114,20 @@ __git_ps1 ()
fi fi
} }
__gitcomp_1 ()
{
local c IFS=' '$'\t'$'\n'
for c in $1; do
case "$c$2" in
--*=*) printf %s$'\n' "$c$2" ;;
*.) printf %s$'\n' "$c$2" ;;
*) printf %s$'\n' "$c$2 " ;;
esac
done
}
__gitcomp () __gitcomp ()
{ {
local all c s=$'\n' IFS=' '$'\t'$'\n'
local cur="${COMP_WORDS[COMP_CWORD]}" local cur="${COMP_WORDS[COMP_CWORD]}"
if [ $# -gt 2 ]; then if [ $# -gt 2 ]; then
cur="$3" cur="$3"
@ -124,21 +135,14 @@ __gitcomp ()
case "$cur" in case "$cur" in
--*=) --*=)
COMPREPLY=() COMPREPLY=()
return
;; ;;
*) *)
for c in $1; do local IFS=$'\n'
case "$c$4" in COMPREPLY=($(compgen -P "$2" \
--*=*) all="$all$c$4$s" ;; -W "$(__gitcomp_1 "$1" "$4")" \
*.) all="$all$c$4$s" ;; -- "$cur"))
*) all="$all$c$4 $s" ;;
esac
done
;; ;;
esac esac
IFS=$s
COMPREPLY=($(compgen -P "$2" -W "$all" -- "$cur"))
return
} }
__git_heads () __git_heads ()
@ -320,9 +324,6 @@ __git_complete_revlist ()
cur="${cur#*..}" cur="${cur#*..}"
__gitcomp "$(__git_refs)" "$pfx" "$cur" __gitcomp "$(__git_refs)" "$pfx" "$cur"
;; ;;
*.)
__gitcomp "$cur."
;;
*) *)
__gitcomp "$(__git_refs)" __gitcomp "$(__git_refs)"
;; ;;