diff options
author | Hakan Ensari <hakan.ensari@papercavalier.com> | 2011-08-31 12:51:10 +0100 |
---|---|---|
committer | Hakan Ensari <hakan.ensari@papercavalier.com> | 2011-08-31 12:51:10 +0100 |
commit | 9c5c70dc0a2531b621ba825c2599189717694d56 (patch) | |
tree | 0fe4261a5888b63fd1d68fcc4778e1f12b264efc /plugins/bundler/bundler.plugin.zsh | |
parent | 762b55bb2bc0452ce3f5f2f21bc22b61936ef704 (diff) | |
download | zsh-9c5c70dc0a2531b621ba825c2599189717694d56.tar.gz zsh-9c5c70dc0a2531b621ba825c2599189717694d56.tar.bz2 zsh-9c5c70dc0a2531b621ba825c2599189717694d56.zip |
order aliases alphabetically
Diffstat (limited to 'plugins/bundler/bundler.plugin.zsh')
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index a6c116407..17e17efd9 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -1,8 +1,8 @@ alias be="bundle exec" alias bi="bundle install" alias bl="bundle list" -alias bu="bundle update" alias bp="bundle package" +alias bu="bundle update" # The following is based on https://github.com/gma/bundler-exec |