1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00
prezto/plugins/textmate/init.zsh
2012-01-23 20:41:02 -05:00

10 lines
122 B
Bash

# Functions
function tm() {
if [[ -z "$1" ]]; then
mate .
else
( [[ -d "$1" ]] && cd "$1" && mate . )
fi
}