You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
450 B
16 lines
450 B
13 years ago
|
# Aliases
|
||
14 years ago
|
alias et='mate .'
|
||
|
alias ett='mate app config lib db public spec test Rakefile Capfile Todo'
|
||
13 years ago
|
alias etp='mate app config features lib db public spec test Gemfile Rakefile Capfile Todo'
|
||
14 years ago
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
|
||
15 years ago
|
|
||
13 years ago
|
# Edit Ruby app in TextMate.
|
||
15 years ago
|
alias mr='mate CHANGELOG app config db lib public script spec test'
|
||
|
|
||
13 years ago
|
# Functions
|
||
15 years ago
|
function tm() {
|
||
|
cd $1
|
||
|
mate $1
|
||
|
}
|
||
13 years ago
|
|