diff options
author | Robby Russell <robby@planetargon.com> | 2010-06-03 12:03:26 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2010-06-03 12:03:26 -0700 |
commit | 3cf9ab722e7c0829727f548c7d05a0d96055f707 (patch) | |
tree | 775b6b98d54bcbdf5158786e4c1c53f3d9494261 /plugins/textmate.plugin.zsh | |
parent | eb0f3c0234e88bbbf5ca014ace8d8d801207c222 (diff) | |
download | zsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.tar.gz zsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.tar.bz2 zsh-3cf9ab722e7c0829727f548c7d05a0d96055f707.zip |
Initial implementation of a new plugin system, so that people can managed which aliases/functions they want.
Diffstat (limited to 'plugins/textmate.plugin.zsh')
-rw-r--r-- | plugins/textmate.plugin.zsh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/textmate.plugin.zsh b/plugins/textmate.plugin.zsh new file mode 100644 index 000000000..7b73e2751 --- /dev/null +++ b/plugins/textmate.plugin.zsh @@ -0,0 +1,14 @@ + +# TextMate +alias et='mate . &' +alias ett='mate app config lib db public spec test Rakefile Capfile Todo &' +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 &' + +# Editor Ruby file in TextMate +alias mr='mate CHANGELOG app config db lib public script spec test' + +function tm() { + cd $1 + mate $1 +} |