views:

64

answers:

0

Eclipse has a great feature to allow you to align all your 'fields in columns' meaning that it will turn:

int myVar = 2334;
int asdf = 34;
String s = "hello";

into

int     myVar  = 2334;
int     asdf   = 34;
String  s      = "Hello";

This makes the code a lot more readable and I love it. However I can't seem to find a similar setting to make it do that for regular local variables. Anyone know if there is a way? It'd be a shame if there isn't one.

Thanks