textmate.plugin.zsh 408 Bytes
Newer Older
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
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.
5
function tm() {
6
7
	if [[ -z $1 ]]; then
		mate .
8
	elif [[ -d $1 ]]; then
9
		mate $1
10
11
12
		cd $1
	else
		mate "$@"
13
	fi
14
}