diff options
author | Marc Cornellà <marc.cornella@live.com> | 2018-08-07 21:04:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 21:04:09 +0200 |
commit | 2991f237aeacb0a1918cdd6d4b98fe4b21980038 (patch) | |
tree | 90676e78ceda5dbda246f6a7008027dd942cdfcd | |
parent | 19b925e741fa46d2222210469a4dffc34a634ebd (diff) | |
download | zsh-2991f237aeacb0a1918cdd6d4b98fe4b21980038.tar.gz zsh-2991f237aeacb0a1918cdd6d4b98fe4b21980038.tar.bz2 zsh-2991f237aeacb0a1918cdd6d4b98fe4b21980038.zip |
bundler: allow aliases in `bundle exec`
This means that if you have, for example, `alias rs='rails server'`, you can
run `be rs` and have it expanded to `bundle exec rails server`.
Fixes #5818
-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 b0b286af5..589f2cfce 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -1,4 +1,4 @@ -alias be="bundle exec" +alias be="bundle exec " alias bl="bundle list" alias bp="bundle package" alias bo="bundle open" |