mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
12 lines
251 B
Bash
12 lines
251 B
Bash
|
# Added `xcap` because `cap` is a reserved word. `cap` completion doesn't work.
|
||
|
# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module
|
||
|
|
||
|
func xcap() {
|
||
|
if [ -f Gemfile ]
|
||
|
then
|
||
|
bundle exec cap $*
|
||
|
else
|
||
|
cap $*
|
||
|
fi
|
||
|
}
|