Tagged Questions

In text display, line wrap is the feature of continuing on a new line when a line is full, such that each line fits in the viewable window, allowing text to be read from top to bottom without any horizontal scrolling.

learn more… | top users | synonyms (1)

40
votes
1answer
2k views

How to disable word-wrap in Xcode 4 editor?

I can't find how to disable word-wrap in Xcode 4 editor. How can I do it?
34
votes
2answers
15k views

Force textblock to wrap in WPF listbox

I have a WPF listbox which displays messages. It contains an avatar on the left side and the username and message stacked vertically to the right of the avatar. The layout is fine until the message ...
26
votes
2answers
1k views

Word Wrap in Vim (preserving indentation)

I was just looking at this post which describes how to wrap entire words in vim. The accepted solution was this: :set formatoptions=l :set lbr Which takes this text (tabs are shown as \t): ...
23
votes
6answers
6k views

Smart Wrap in Vim

I have been wondering if Vim has the capability to smart wrap lines of code, so that it keeps the same indentation as the line that it is indenting. I have noticed it on some other text editor, such ...
23
votes
5answers
44k views

How to word wrap text in HTML?

How can text like "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" which exceeds the width of a div(say 200px), be wrapped? I am open to any kind of solution such as CSS, jQuery, et cetera.
23
votes
10answers
30k views

how to get a Flex text control to word wrap

I'm creating an Adobe Flex application and I have a Text control (mx:Text), which is supposedly used when you need multiline noneditable text (as opposed to a Label, which is single line noneditable ...
23
votes
3answers
15k views

How can I get word wrap to work in Eclipse PDT for PHP files?

Programming PHP in Eclipse PDT is predominately a joy: code completion, templates, method jumping, etc. However, one thing that drives me crazy is that I can't get my lines in PHP files to word wrap ...
17
votes
3answers
6k views

wordwrap a very long string

How can you display a long string, website address, word or set of symbols with automatic line breaks to keep a div width? I guess a wordwrap of sorts. Usually adding a space works but is there a CSS ...
16
votes
3answers
16k views

how remove wordwrap from textarea

my simple textarea doesn't show a horizontal bar when text overflows. It wraps text for a new line. So how do I remove wordwrap and display horizontal bar when text overflows?
14
votes
4answers
6k views

Word wrap in Gvim

How do I make Gvim word wrap in such a way that doesn't break words in the middle?
11
votes
6answers
4k views

How can I toggle word wrap in Visual Studio.NET?

Does Visual Studio .NET have a way to toggle word-wrap on and off? I am used to this feature in Eclipse which allows you to right click and toggle word wrap on and off so that when you have long ...
10
votes
1answer
477 views

make gvim treat wrapped line as new line

When I press "j" or arrow down in vim/gvim the cursor moves to the next line. which is good for writing code. When writing text however the lines are usually much longer then the text with. Therefore ...
9
votes
3answers
5k views

word-wrap:break-word not working in IE8

Can anyone please tell me why word-wrap: break-word will not work in IE8? I have this working in other browsers but IE8 refuses to listen despite reading this post on their site? ...
9
votes
1answer
2k views

vim command to restructure/force text to 80 columns

I know there are ways to automatically set the width of text in vim using set textwidth (like http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns). What I am looking for is ...
9
votes
5answers
8k views

Is there a way to word-wrap text in a div?

I know IE has a word-wrap style but I'd like to know if there is a cross browser method of doing so to text in a div. Preferably CSS but javascript snippets would work ok too edit: yeah referring ...
9
votes
9answers
12k views

Best word wrap algorithm?

Word wrap is one of must-have features in modern text editor. Do you know how to handle word wrap? What is the best algorithm for word-wrap? updated: If text is several million lines, how can I ...
8
votes
2answers
711 views

Android: How to wrap text by chars? (Not by words)

For instance: This is foo text for wrapping text in TextView The way that TextView wraps is: This is foo text for wrapping text in ... I want this: This is foo text for wr apping text in ...
8
votes
2answers
9k views

Word-wrap grid cells in Ext JS

(This is not a question per se, I'm documenting a solution I found using Ext JS 3.1.0. But, feel free to answer if you know of a better solution!) The Column config for an Ext JS Grid object does not ...
7
votes
5answers
344 views

How can i get jqgrid frozen columns to work with word wrap on

I am using the latest jqgrid 4.3.1 and i am trying to use frozen columns. The issue is that i have overridden the default css to support word wrap (css solution can be seen in this question) in ...
7
votes
3answers
1k views

word wrap / line wrap option in Aptana Studio 3 Beta?

I have been searching for an hour and cannot seem to find any information whatsoever about a word wrap / line wrap option in the new Aptana Studio 3 Beta (aka RadRails 3 Beta). I can't find an option ...
7
votes
5answers
2k views

SVG Word Wrap - Show stopper?

For fun I am trying to see how far I can get at implementing an SVG browser client for a RIA I'm messing around with in my spare time. But have hit what appears to be a HUGE stumbling block. There is ...
6
votes
2answers
135 views

How to auto linewrap comments in .NET?

I'd like to have a single command to auto-linewrap the XML-style comments in .NET. Example: /// <summary> /// This comment line should be /// on one line, and other lines in this ...
6
votes
1answer
846 views

WPF text Wrap vs WrapWithOverflow

What's the "conceptual" difference between TextWrapping="Wrap" and TextWrapping="WrapWithOverflow" (e.g. for a TextBox)? In the MSDN page about the class TextBox there is nothing ... Thank you.
6
votes
2answers
808 views

Using “word-wrap: break-word” within a table [closed]

Possible Duplicate: Word-wrap in a html table This text behaves exactly the way I want on Google Chrome (and other modern browsers): <div style="border: 1px solid black; width:100%; ...
6
votes
3answers
3k views

Word wrap in Eclipse Java?

I already have word wrap for Eclipse PHP (How can I get word wrap to work in Eclipse PDT for PHP files?). What about Eclipse Java? Is there a similar tool to wrap Java code lines?
6
votes
1answer
2k views

How to implement wordwrap on jqGrid which works on IE7, IE8 and FF

How to implement wordwrap on jqGrid which works on IE7, IE8 and FF, while also having column-resize work (grid aligns correctly). Tried to innerwrap content on each td with a div of specific width ...
6
votes
2answers
931 views

Vim, LaTeX, word-wrapping, and version control

I'm writing a LaTeX document in vim, and I have it hard wrapping at 80 characters to make reading easier. However, this causes problems with tracking changes with in version control. For example, ...
6
votes
1answer
3k views

How to prevent line breaks for menu item using in CSS

Im trying to put a link called submit resume in menu using li tag. when i give space between submit and resume it wraps down. How to prevent wrapping. help me
6
votes
6answers
12k views

CSS word-wrapping in div

I have a div with a width of 250px. When the innertext is wider than that i want it to break down. The div is float: left and now has an overflow. I want the scrollbar to go away by using ...
5
votes
1answer
256 views

CSS word wrap / line break on underscores in addition to whitespace and hyphens

I have a bunch of really long file names that cause my HTML formatting to overflow. All of these filenames use underscores instead of spaces and would break/wrap easily if they were spaces. Like ...
5
votes
3answers
341 views

What are the split characters in Silverlight's TextWrapping?

The TextWrapping feature in Silverlight is described here. However, I'm trying to find out the details of their line-breaking algorithm. Obviously a space will cause the text to break (or split), ...
5
votes
2answers
591 views

How to use Emacs to write comments with proper indentation, line-length, and wrapping?

I'm tired of writing comments that look like this { # bla bla blabla bla blabla bla blabla # bla bla blabla bla blabla bla blabla bla blabla bla blabla bla bla # blaaa bla } I have to ...
5
votes
1answer
770 views

How to do word wrap in a DevExpress TcxGrid?

I've got a long line of text that would be a lot easier to view if it would just word wrap around multiple lines, but I can't seem to find the option for it. Does anyone know how to enable word-wrap ...
5
votes
2answers
1k views

What is the difference between “word-break: break-all” versus “word-wrap: break-word” in CSS

I am currently wondering what is the difference between the two. When I used both they seem to break the word if it is not fitting the container. But why did W3C made two ways to do it?
4
votes
2answers
106 views

Wrap long words in JTextPane (Java 7)

In all versions of Java up to 6, the default behaviour of a JTextPane put inside a JScrollPane was: wrap lines at word boundaries if possible. If not, then wrap them anyway. In JDK 7, the default ...
4
votes
3answers
145 views

Alternative to word-wrap that sets line break

I need to wrap a long string and want the strong to break at the line break. The solution must be supported by all browsers. The break in the b’s and d’ should occur as follows: Aaaa Bbbbbb ...
4
votes
1answer
92 views

Wrapping strings, but not substrings in quotes, using R

This question is related to my question about Roxygen. I want to write a new function that does word wrapping of strings, similar to strwrap or stringr::str_wrap, but with the following twist: Any ...
4
votes
6answers
426 views

Word wrap to X lines instead of maximum width (Least raggedness)

Does anyone know a good algorithm to word wrap an input string to a specified number of lines rather than a set width. Basically to achieve the minimum width for X lines. e.g. "I would like to be ...
4
votes
1answer
221 views

Is it possible to modify how Text swt widget wrap word?

The development platform is an Eclipse RCP 3.4 on Fedora (It's using Gtk native component). I need to avoid word wrapping. i.e.: "Hello World" is displayed as case N°1 but I need the case N°2. ...
4
votes
1answer
364 views

How to disable word wrapping in plain text files in Chrome

I need Chrome to display plain text files with long lines that should not be wrapped. But when Chrome displays a plain text file (text/plain) it wraps the lines around. How can I induce it to exhibit ...
4
votes
1answer
437 views

Write-Verbose output that doesn't wrap to command width in Powershell

I'd like to Write-Verbose a lot of data to an out file. Here's how I'm doing it. Start-Transcript -Path $TargetDir\RunUnitTests.log -Width 1000000 Write-Verbose "five million character lines and ...
4
votes
1answer
441 views

Algorithm for Text Wrapping Within a Shape

I am looking for an algorithm to wrap text within a non-rectangular shape, preferably based on the Knuth and Plass algorithm. The hardest part of this is that the lines may have different heights due ...
4
votes
2answers
425 views

Is it necessary to wrap long lines when sending emails?

I'm using Zend_Mail to send emails. Few articles (like first example on this page) have suggested to wrap long lines in message body. Questions: Is it necessary to use wordwrap(), in case any of ...
4
votes
1answer
3k views

CSS break-word problem with div inside td in IE7

I'm trying to use the CSS word-wrap property with break-word value. I want to use this inside a td, and apparently need to use a additional div tag for this to work. fine. I tried to build a ...
4
votes
2answers
3k views

C#/WPF: Disable Text-Wrap of RichTextBox

Does anyone know how I can disable the text wrapping of a RichTextBox? E.g. if I have a large string which doesn't fit in the window, the RichTextBox places the part of the string which can't be shown ...
4
votes
8answers
608 views

Do you use word wrapping within emails?

I'm wondering if word wrapping should be applied in text emails? And what about HTML emails? If so, what character would you normally wrap at?
4
votes
3answers
802 views

Algorithm for re-wrapping hard-wrapped text?

Let's say that I have written a custom e-mail management application for the company that I work for. It reads e-mails from the company's support account and stores cleaned-up, plain text versions of ...
3
votes
2answers
72 views

Navigate between soft lines in Vim

I have the following one-line text input that's broken into several soft line wraps. When I press j, I'd go straight to the next hard line, line 2. How do I navigate among soft line wraps?
3
votes
6answers
76 views

How to wrap many <span> within <div>

I have a <div> with hard-coded width. Inside the <div> are several hundred <span> tags. Can I wrap the spans so that line spacing is correct and wrapping is between spans? I use ...
3
votes
1answer
422 views

Delphi - Drawing text to canvas, word wrap, and measuring size

I'm using Delphi 7. I'm more than familiar with using a canvas and drawing text to a canvas, and also using TCanvas.TextHeight etc. The problem arises when I want to implement Word Wrap. Not only do I ...

1 2 3 4 5 6