I am looking for a setting in Eclipse (using Photon) which will alter the auto-completion style of parentheses.
Eclipse's default looks like this:
function_call(arg1, arg2, arg3);
I prefer to write code like so, as I find it more readable:
function_call( arg1, arg2, arg3 );
Is there a setting under Window > Preferences which can edit auto-completion in this way? Editing them manually is a hassle, and I like my code to look consistent, stylistically.