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

I'm editing an XML file with the Eclipse IDE and need to input paragraphs of text. It doesn't seem that eclipse has a line-wrap feature though. Anyone knows if it does or if there's a plugin for that?

share|improve this question

8 Answers

up vote 10 down vote accepted

Try this plugin http://colorer.sourceforge.net/eclipsecolorer/

It looks like eclipse only has the ability to do it manually on its own and here are the commands. At that point you must reformat the highlighted text manually.

It's not terribly obvious how to control Eclipse line width and line wrapping in your Java source files. Here's how and where:

Comment width and line wrapping is set in Preferences->Java->Code Style->Formatter, then click on the Edit button and select the Comments tab. I like Line Width for Comments to be 120.

Code line wrapping is set nearby, in Preferences->Java->Code Style- >Formatter, then click on the Edit button and select the Line Wrapping tab. I like a line width of 120 and indent size of 4.

Indentation is set separately, in Preferences->Java->Code Style- >Formatter, then click on the Edit button and select the Indentation tab. I like an indent size of 4, consistent with the Line Wrapping indent setting.

As if that's not enough, you can also set printer margins, tab size, etc, in Preferences>General>Editors>Text Editors where I set the Displayed Tab Width to 4 and Print Margin Column to 120 or more.

You can also check the Show Print Margin box to get a faint vertical line at the printer margin column

share|improve this answer
I thought that first too, but I guessed that he's more asking for automatic wrapping while editing. – BalusC May 17 '10 at 0:17
@donpal I think I found a plugin. – Romain Hippeau May 17 '10 at 0:32
1  
it took me 45 minutes of searching to figure out that comments have their own 'width' property ... does MS write this program? – Casey Nov 2 '10 at 2:59

Just for the record, while Eclipse Colorer might bring wrapping for xml files, Eclipse has not in general a soft wrapping feature for Text editor.

Soft and hard. Soft will just warp the text at the right window border without adding new line numbers (so there are gaps in the list of numbers when you enable them).

This is one of the most upvoted bugs in Eclipse history: bug 35779 (9 years and counting, 200+ votes)

Update February 2013:

That bug references an old Word wrap plugin, but Oak mentions in his answer (upvoted) a new plugin for recent (Juno+) versions of Eclipse (so 3.8.x, 4.x, may have been seen working with 3.7)
That plugin is from Florian Weßling, who just updated it (March 2013)

Right click in an opened file and select "Toggle Word Wrap" (shortcut ctrl+alt+e)

before
words wrapped

share|improve this answer
"Eclipse Word-Wrap Plug-In" works well in latest Eclispe PDT, thanks ! – Fedir Apr 3 at 9:02

Ctrl+Shift+F will format a file in Eclipse, breaking long lines into multiple lines and nicely word-wrapping comments. You can also highlight just a section of text and format that.

I realize this is not an automatic soft/hard word wrap like the other answers, but I don't think the question was asking for anything fancy.

share|improve this answer

The Eclipse Word-Wrap plugin works for any type of file for me.

share|improve this answer
1  
Perfect. Exactly what I was looking for. – Andreas_D Jun 17 '12 at 10:19
Ive installed your Word Wrap plugin, restarted eclipse but can't figure out the option for Word Wrap. Am I missin something? I'm Using Eclipse Juno, and installed PHP PDT on Juno. Switched to both perspective PHP/Jave EE , but can't seem the option to word wrap even after installing Word Wrap plugin. Can you help me please? Thank you in advance. – Yegya Apr 22 at 2:06
May be it won't work with Juno Version. – Yegya Apr 22 at 2:10

Word wrap comes out of the box with Juno now. Right Click on the editor and select the "Word Wrap" option from the dropdown.

share|improve this answer
Can't find it? Which editor did you use? – RainSia Jan 27 at 15:32
@africanherbsman Cannot find the "Word Wrap" option either. Is it specified in a special perspective or in any kind of perspective? I am in the C++ one. – Wang Feb 15 at 16:18
I'm on Default Eclipse Juno Java EE Version, but can't figure out option for WOrd Wrap. – Yegya Apr 22 at 2:09

From Bug 35779 - Comment 187:

A workaround, that I use for the last years now, is to use the eclipse wiki markup editor for editing text files. This supports word wrap, and this is enough for me. Maybe this information could be of help to some of you.

share|improve this answer

Ahti Kitsik's plugin is mentioned above, but there's a newer plugin by another author that works with newer versions of Eclipse (up to Juno, at least), and also fixed the line numbering issue in the older plugin.

enter image description here

There are full installation instructions on the author's website, but here's the short version:

  1. Download the plugin (update site: http://dev.cdhq.de/eclipse/word-wrap/)
  2. Download this jar file and drop it in your eclipse/plugins directory
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.