Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with Java. If I hit Ctrl+Shift+F in Eclipse Helios, it will auto format my code. At a certain point, it wraps lines. I would like to increase the maximum line length. How can I do this?

share|improve this question
6  
thank you for this Q&A... the issue is a constant pain for me – Michael Easter Aug 18 '11 at 14:03
1  
Even after 3 years of the original post, this issue keeps bugging the developers. ;-) – Tirtha May 2 at 11:58

7 Answers

up vote 170 down vote accepted

In preferences Java -> Code Style -> Formatter, edit the profile. Under the Line Wrapping tab is the option for line width (Maximum line width:). you will need to make your own profile.

share|improve this answer

Comments have their own line length setting at the bottom of the setting page java->code style->formatter-> Edit... ->comments

share|improve this answer

Take a look of following image:

Java->Code style->Formatter-> Edit

enter image description here

share|improve this answer

for XML line width, update preferences > XML > XML Files > Editor > Line width

share|improve this answer

Click Project->preferences. Type format into the search - you should see java->code style->formatter. Click that, then edit - finally, the line wrapping tab - its there :)

share|improve this answer

For HTML/PHP: Web -> HTML Files -> Editor -> Line width

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.