Browse Source

Merge pull request #345 from jacobat/master

Autojump plugin
Robby Russell 13 years ago
parent
commit
ab2a7b51a8
2 changed files with 7 additions and 4 deletions
  1. 3 0
      plugins/autojump/autojump.plugin.zsh
  2. 4 4
      plugins/textmate/textmate.plugin.zsh

+ 3 - 0
plugins/autojump/autojump.plugin.zsh

@@ -0,0 +1,3 @@
+if [ -f `brew --prefix`/etc/autojump ]; then
+  . `brew --prefix`/etc/autojump
+fi

+ 4 - 4
plugins/textmate/textmate.plugin.zsh

@@ -1,9 +1,9 @@
 
 # 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 &'
+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'