If I type the following javascript in Netbeans...
if (foo) [enter] { [enter] dostuff();
I get:
if (foo)
{
dostuff();
}
which is just silly. Is there any way to get the correct result:?
if (foo)
{
dostuff();
}
Edit: Apparently this is a bug that was supposedly fixed years ago.