Easily open files and directories in TextMate.

This commit is contained in:
Sorin Ionescu 2011-12-28 11:42:41 -05:00
parent 2f1565e272
commit db31957cd7

View File

@ -9,6 +9,10 @@ alias mr='mate CHANGELOG app config db lib public script spec test'
# Functions
function tm() {
cd "$1" && mate .
if [[ -z "$1" ]]; then
mate .
else
( [[ -d "$1" ]] && cd "$1" && mate . )
fi
}