2011-11-16 20:51:30 +00:00
|
|
|
# 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
|
2016-03-25 18:57:09 +00:00
|
|
|
# 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.
|
2010-06-03 19:03:26 +00:00
|
|
|
function tm() {
|
2011-11-16 20:51:30 +00:00
|
|
|
if [[ -z $1 ]]; then
|
|
|
|
mate .
|
2016-03-25 18:57:09 +00:00
|
|
|
elif [[ -d $1 ]]; then
|
2011-11-16 20:51:30 +00:00
|
|
|
mate $1
|
2016-03-25 18:57:09 +00:00
|
|
|
cd $1
|
|
|
|
else
|
|
|
|
mate "$@"
|
2011-11-16 20:51:30 +00:00
|
|
|
fi
|
2010-06-03 19:03:26 +00:00
|
|
|
}
|