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 | |
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.
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 2 | ||||
-rw-r--r-- | plugins/extract/extract.plugin.zsh | 2 |
2 files changed, 0 insertions, 4 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" diff --git a/plugins/extract/extract.plugin.zsh b/plugins/extract/extract.plugin.zsh index 8cc17f7d4..383331ccf 100644 --- a/plugins/extract/extract.plugin.zsh +++ b/plugins/extract/extract.plugin.zsh @@ -80,6 +80,4 @@ alias x=extract # add extract completion function to path fpath=($ZSH/plugins/extract $fpath) -autoload -U compinit -compinit -i |