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