Merge with upstream.

This commit is contained in:
Steve Losh 2011-08-12 12:25:19 -04:00
commit 9ab8458a11
46 changed files with 2319 additions and 126 deletions

View file

@ -57,3 +57,12 @@ zstyle ':completion:*:*:*:users' ignored-patterns \
# ... unless we really want to.
zstyle '*' single-ignored show
if [ "$DISABLE_COMPLETION_WAITING_DOTS" != "true" ]; then
expand-or-complete-with-dots() {
echo -n "\e[31m......\e[0m"
zle expand-or-complete
zle redisplay
}
zle -N expand-or-complete-with-dots
bindkey "^I" expand-or-complete-with-dots
fi