blob: 81957282554e2be325431caa4fa9abda8c802ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Added `capit` because `cap` is a reserved word. `cap` completion doesn't work.
# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module
function capit() {
if [ -f Gemfile ]
then
bundle exec cap $*
else
cap $*
fi
}
|