summaryrefslogtreecommitdiff
path: root/plugins/textmate/textmate.plugin.zsh
blob: 02813de9e6bbc5dfd45c481d448a6e8ad6480ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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
# If tm is passed a file, open it in TextMate
function tm() {
	if [[ -z $1 ]]; then
		mate .
	else
		mate $1
		if [[ -d $1 ]]; then
			cd $1
		fi
	fi
}