version control - Is there a way to format code in Eclipse's compare tool? Ignoring whitespace isn't enough -


when using compare tool, eclipse shows this

void foo() {     //... } 

as different this

void foo() {     //... } 

which while technically correct annoying when comparing 2 versions of files have different formatting. is there way apply current formatting compare view? if it's different style either of 2 things being compared @ least give nice base finding "actual" differences in code.

the plugin have found this doesn't work eclipse (luna), because made older version.


as aside, useful thing , perhaps easier ignore new line characters , tabs, of course show

foobar 

and

foo bar 

as same it's better nothing.


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -