Eclipse has an excellent feature that allows you to align all your fields in columns, which means that it will look like:
int myVar = 2334; int asdf = 34; String s = "hello";
in
int myVar = 2334; int asdf = 34; String s = "Hello";
It makes the code more readable and I like it. However, I cannot find a similar setting to do this for ordinary local variables. Does anyone know if there is a way? It would be a shame if not for one.
thanks
code-formatting eclipse
John baker
source share