How to open Textmate for a .java document since the begining?
I want to know how can I make Textmate open and instead of starting with a .text startring in a .java
Observing members:
0
Composing members:
0
Answers
You can’t do that with TextMate as far as I know. You could, however make a shell script that does something like:
touch $1.java
mate $1.java
Where $1 is the path and file name passed as an argument (eg: `./script.sh Class`)
Answer this question 