Is there a way to stop eclipse from mangling the comments in my source files?
My main issue is stopping it from word wrapping them. I've managed to configure eclipse to not word wrap any code but it still seems to do it to comments.
Code that I enter like this:
public int myVariable = 100; // this variable is a very interesting variable and it does lots of stuff
End up like this:
public int myVariable = 100; // this variable
// is a very
// interesting
// variable and
// it does lots
// of stuff