Jump to content

Brackets on new line when making a project


1 post in this topic

Recommended Posts

Does anyone know how to make it so that brackets start on a new line when making a project? This drives me nuts. XCode always does this:

 

public class X {
public static voic main(String[] args) {
	//todo
}
}

 

I want it to look like this:

public class X
{
public static void main(String[] args)
{
	//todo
}
}

 

Thanks!

Link to comment
Share on other sites

 Share

×
×
  • Create New...