2011-05-19 16:33:29 +02:00
|
|
|
alias et='mate .'
|
2011-09-14 09:13:01 +02:00
|
|
|
alias ett='mate Gemfile app config features lib db public spec test Rakefile Capfile Todo'
|
2011-05-19 16:33:29 +02:00
|
|
|
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
|
|
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
2010-06-03 21:03:26 +02:00
|
|
|
|
2011-05-28 19:06:03 +02:00
|
|
|
# Edit Ruby app in TextMate
|
2010-06-03 21:03:26 +02:00
|
|
|
alias mr='mate CHANGELOG app config db lib public script spec test'
|
|
|
|
|
2011-11-16 21:51:30 +01:00
|
|
|
# If the tm command is called without an argument, open TextMate in the current directory
|
|
|
|
# If tm is passed a directory, cd to it and open it in TextMate
|
|
|
|
# If tm is passed a file, open it in TextMate
|
2010-06-03 21:03:26 +02:00
|
|
|
function tm() {
|
2011-11-16 21:51:30 +01:00
|
|
|
if [[ -z $1 ]]; then
|
|
|
|
mate .
|
|
|
|
else
|
|
|
|
mate $1
|
|
|
|
if [[ -d $1 ]]; then
|
|
|
|
cd $1
|
|
|
|
fi
|
|
|
|
fi
|
2010-06-03 21:03:26 +02:00
|
|
|
}
|