]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/textmate/textmate.plugin.zsh
17451101931de3a7d9d3556cbfb4471d303c4674
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / textmate / textmate.plugin.zsh
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 }