Update external completions

This commit is contained in:
Sorin Ionescu 2012-08-27 18:49:27 -04:00
parent ccf181379a
commit 3b87a4db48
4 changed files with 6 additions and 3 deletions

4
.gitmodules vendored
View File

@ -4,6 +4,6 @@
[submodule "modules/syntax-highlighting/external"]
path = modules/syntax-highlighting/external
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
[submodule "modules/completion/functions"]
path = modules/completion/functions
[submodule "modules/completion/external"]
path = modules/completion/external
url = https://github.com/zsh-users/zsh-completions.git

@ -0,0 +1 @@
Subproject commit 589938ffc9c241952743051d907f7cb451eb157f

@ -1 +0,0 @@
Subproject commit 8b89dd9d10e86313f49fafdf88e8540f97346f33

View File

@ -11,6 +11,9 @@ if [[ "$TERM" == 'dumb' ]]; then
return 1
fi
# Add zsh-completions to $fpath.
fpath=("${0:h}/external/src" $fpath)
# Load and initialize the completion system ignoring insecure directories.
autoload -Uz compinit && compinit -i