Browse code

Revert "Enable red dots during completion by default".

After a few weeks of using this, I'd prefer this to not be enabled by default. My bad for suggesting that in the first place.

This reverts commit fc49b4a4ded376cd82b813dcb6d72fdc050b7bed.

Robby Russell authored on 31/08/2011 at 03:56:13
Showing 2 changed files
... ...
@@ -59,7 +59,7 @@ zstyle ':completion:*:*:*:users' ignored-patterns \
59 59
 # ... unless we really want to.
60 60
 zstyle '*' single-ignored show
61 61
 
62
-if [ "$DISABLE_COMPLETION_WAITING_DOTS" != "true" ]; then
62
+if [ "x$COMPLETION_WAITING_DOTS" = "xtrue" ]; then
63 63
   expand-or-complete-with-dots() {
64 64
     echo -n "\e[31m......\e[0m"
65 65
     zle expand-or-complete
... ...
@@ -19,8 +19,8 @@ ZSH_THEME="robbyrussell"
19 19
 # Uncomment following line if you want to disable autosetting terminal title.
20 20
 # DISABLE_AUTO_TITLE="true"
21 21
 
22
-# Uncomment following line if you want disable red dots displayed while waiting for completion
23
-# DISABLE_COMPLETION_WAITING_DOTS="true"
22
+# Uncomment following line if you want red dots to be displayed while waiting for completion
23
+# COMPLETION_WAITING_DOTS="true"
24 24
 
25 25
 # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
26 26
 # Example format: plugins=(rails git textmate ruby lighthouse)