Browse code

Moved the single compinit call from oh-my-zsh.sh to lib/completion.zsh

Pat Regan authored on 08/04/2011 at 15:10:14
Showing 2 changed files
... ...
@@ -60,3 +60,7 @@ zstyle ':completion:*:*:*:users' ignored-patterns \
60 60
 # ... unless we really want to.
61 61
 zstyle '*' single-ignored show
62 62
 
63
+# Load and run compinit
64
+autoload -U compinit
65
+compinit -i
66
+
... ...
@@ -18,8 +18,8 @@ for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
18 18
 source "$ZSH/themes/$ZSH_THEME.zsh-theme"
19 19
 
20 20
 # Load and run compinit
21
-autoload -U compinit
22
-compinit -i
21
+#autoload -U compinit
22
+#compinit -i
23 23
 
24 24
 # Check for updates on initial load...
25 25
 if [ "$DISABLE_AUTO_UPDATE" = "true" ]