Set textmate2 to save automatically with a .java extension?

35 Views Asked by At

I was wondering if textmate2 can be set to save a file in a .java extension. I'm looking around for such a feature but can't find anything. Can anyone help me out?

1

There are 1 best solutions below

0
On

Add the following snippet to ~/.tm_properties or to a .tm_properties file in your project.

[ source.java ]
saveOnBlur = true

source.java Refers to the scope of Java code from the official bundle. Your scope could be different, so to answer your question directly: you can do this with file extensions:

[*.java]
saveOnBlur = true

You may find this thread/gist enlightening