diff options
author | Christopher Chow <soliah@gmail.com> | 2011-02-23 03:05:25 +1100 |
---|---|---|
committer | Christopher Chow <soliah@gmail.com> | 2011-02-23 03:05:25 +1100 |
commit | 4144f4beea4e56231adeb3574d3516b35c3331cf (patch) | |
tree | b86395ee0177390edb8f66ccfc9f404d47f369e4 /plugins/bundler/bundler.plugin.zsh | |
parent | 746a10368acd38d80cd35c2b97202a9187d58a05 (diff) | |
download | zsh-4144f4beea4e56231adeb3574d3516b35c3331cf.tar.gz zsh-4144f4beea4e56231adeb3574d3516b35c3331cf.tar.bz2 zsh-4144f4beea4e56231adeb3574d3516b35c3331cf.zip |
Add tab completion to bundler plugin.
Diffstat (limited to 'plugins/bundler/bundler.plugin.zsh')
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index fb40e2cec..caa2f6771 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -1,3 +1,7 @@ +fpath=($ZSH/plugins/bundler $fpath) +autoload -U compinit +compinit -i + alias be="bundle exec" alias bi="bundle install" alias bu="bundle update" |