textmate.plugin.zsh 408 B

1234567891011121314
  1. # If the tm command is called without an argument, open TextMate in the current directory
  2. # If tm is passed a directory, cd to it and open it in TextMate
  3. # If tm is passed anything else (i.e., a list of files and/or options), pass them all along
  4. # This allows easy opening of multiple files.
  5. function tm() {
  6. if [[ -z $1 ]]; then
  7. mate .
  8. elif [[ -d $1 ]]; then
  9. mate $1
  10. cd $1
  11. else
  12. mate "$@"
  13. fi
  14. }