From a46aa6e3f8009f7edf064380457b1c3c7675e4ad Mon Sep 17 00:00:00 2001 From: Dozer Date: Tue, 19 Aug 2014 19:19:31 +0800 Subject: [PATCH] enable autojump auto complete --- plugins/autojump/autojump.plugin.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/autojump/autojump.plugin.zsh b/plugins/autojump/autojump.plugin.zsh index 50a694764..5f4410983 100644 --- a/plugins/autojump/autojump.plugin.zsh +++ b/plugins/autojump/autojump.plugin.zsh @@ -14,4 +14,6 @@ if [ $commands[autojump] ]; then # check if autojump is installed elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.zsh ]; then # mac os x with brew . `brew --prefix`/etc/autojump.zsh fi + + autoload -U compinit && compinit -u # enable autojump auto complete fi