Dawid Ohia
Dawid Ohia

Reputation: 16435

How to wrap words/lines in NetBeans IDE 6.9.1?

I searched for "wrap" in keyboard mappings without success. I don't see this option in menu neither.

EDIT: I was thinking about result the you get let's say in Notepad2 by pressing Ctrl+W (or selecting View -> Word Wrap). So I'am asking about toggling such Word Wrap

Upvotes: 8

Views: 17725

Answers (6)

Hafiz Shehbaz Ali
Hafiz Shehbaz Ali

Reputation: 2676

Go to toolbar-> option ->Editor(Tab)

view this picture..

soft wrap in netbean

select your line wrap 'after words' .

after apply these settings. you will see the code responsive way. you don't need to scroll horizontal to see code.view the picture for resutl.

soft wrap in netbean

Upvotes: 0

Yannis Dran
Yannis Dran

Reputation: 1529

As Daniel says, after Netbeans 7 this is possible. Just go to your NetBeans options and select the editor tab. In languages (dropdown) selection choose "all languages". Then you will see the option Line Wrap. Change it to "After Words" or "Anywhere".

enter image description here

Upvotes: 3

Daniel
Daniel

Reputation: 804

Since Netbeans 7, word wrap is available. See this blog for directions:

Netbeans & Wordwarp

Upvotes: 3

Myer
Myer

Reputation: 3720

Stolen from Sidarta's tip in this SO post:

You can use word wrap in Netbeans.

Add to netbeans.conf (netbans_instalation_path/etc/netbeans.conf):

-J-Dorg.netbeans.editor.linewrap=true and restart Netbeans.

In Options->Editor->Formating there is Line Wrap dropdown option

Works fine for me in Netbeans 6.9

Upvotes: 8

Mike Baranczak
Mike Baranczak

Reputation: 8374

Are you talking about "soft wrapping"? That is, there are no line breaks inserted into the text file, but each line is wrapped to fit in the editor window?

NetBeans doesn't support that. Hard to believe, I know. I think it might be coming in the 7.0 version, I'm not sure.

Upvotes: 6

YetMoreStuff
YetMoreStuff

Reputation: 950

In Tools->Options there is a whole section on line wrapping. The options you choose here will depend on how you need to do the wrapping - it is quite configurable.

  1. Go to Tools->Options.
  2. Click on Editor in the ribbon at the top.
  3. Choose the formatting tab.
  4. Choose the language you require the wrapping for it the Language combobox.
  5. In the Category, choose Wrapping.
  6. Configure how you would like the wrapping to take place.

Hope this helps...

Upvotes: 27

Related Questions