Browse code

Enable red dots during completion by default

Loïc Yhuel authored on 28/07/2011 at 17:52:35
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 [ "x$COMPLETION_WAITING_DOTS" = "xtrue" ]; then
62
+if [ "$DISABLE_COMPLETION_WAITING_DOTS" != "true" ]; 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 red dots to be displayed while waiting for completion
23
-# COMPLETION_WAITING_DOTS="true"
22
+# Uncomment following line if you want disable red dots displayed while waiting for completion
23
+# DISABLE_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)