Created
January 20, 2012 07:11
-
-
Save sillygwailo/1645935 to your computer and use it in GitHub Desktop.
Open a file in TextMate 2 with the command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# original found on Twitter somewhere | |
# replaces the 'mate' command that came with TextMate 1.5 | |
# create an empty file if it doesn't exist (TextMate 2 currently won't do this for you) | |
# this goes in your .profile | |
# this appears to be no longer necessary with build 9064 of TextMate 2 | |
# you may still need to go into TextMate | Preferences | Terminal and install | |
# it. I chose /usr/local/bin since ~/bin didn't exist and wasn't in my PATH | |
function mate() { | |
if [ ! -e $1 ]; | |
then | |
touch $1; | |
fi | |
open -a TextMate $1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment