diff options
author | Daniel Bye <dan@slightlystrange.org> | 2012-01-13 12:40:59 +0000 |
---|---|---|
committer | Daniel Bye <dan@slightlystrange.org> | 2012-01-13 12:40:59 +0000 |
commit | c04b4abe91b69c058bde8e5968abb759b9168b88 (patch) | |
tree | 1e03fc01cbc3ce8145c0f06256cee90ced32b76f /plugins/bundler/bundler.plugin.zsh | |
parent | 7a41498b0d4f68c537d494b5f849913361315fde (diff) | |
download | zsh-c04b4abe91b69c058bde8e5968abb759b9168b88.tar.gz zsh-c04b4abe91b69c058bde8e5968abb759b9168b88.tar.bz2 zsh-c04b4abe91b69c058bde8e5968abb759b9168b88.zip |
Removed calls to compinit in the extract and the bundler plugins. compinit should only be called once, after all modules, libs, etc are imported.
Diffstat (limited to 'plugins/bundler/bundler.plugin.zsh')
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index 55564a252..e120331ff 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -1,6 +1,4 @@ fpath=($ZSH/plugins/bundler $fpath) -autoload -U compinit -compinit -i alias be="bundle exec" alias bi="bundle install" |