Let's speak of relative measures. My Vim looks like:

aaaaaaaaaaaaa 
bbbbbbbbbbbbb 
ccccccccccccc 
etc

I would like it to be smaller:

aaaaa
aaaaa
bbbbb
bbbbb
ccccc
ccccc
etc

How can I get it? And how can I manage setting the length of such a block?

link|improve this question

Do you mean wrap text, and not indent text? – lc. May 5 '09 at 7:48
lc: I do not know the difference. I was going to write wrap as it was recommended to me, but I have never got it working. – Masi May 5 '09 at 8:02
feedback

4 Answers

up vote 10 down vote accepted

Using fold(1) is one possibility:

:%!fold -w5

Result:

aaaaa
aaaaa
aaa 
bbbbb
bbbbb
bbb 
ccccc
ccccc
ccc
link|improve this answer
2  
This assumes a fold command is installed. – Swaroop C H May 5 '09 at 11:55
This also doesn't respect spaces for folding – Lionel Dec 29 '10 at 0:29
1  
@Lionel: Yes. To respect spaces, add option "-s" to the fold command. – sleske Aug 11 '11 at 18:59
feedback

You can actually do two things:

  1. Let vim format (i.e.change) your text to have shorter lines, by inserting linebreaks
  2. Leave lines as they are, but display them wrapped

Which do you want?

  1. would be achieved by setting textwidth (see Swaarop's answer). Then you can reformat your text by marking it (visual mode) and typing gq.

  2. can be toggled by ":set wrap" / ":set nowrap"

Both are independent.

link|improve this answer
7  
+1 for the gq key command from visual mode, thats awsomely useful – Fire Crow Aug 26 '09 at 18:00
6  
Also useful is gq} - format to the end of the paragraph. – Nathan Long Mar 19 '11 at 1:00
1  
FYI this breaks on spaces and gqgq doesn't do anything to a line like shown in the question even if tw=5. – dlamblin Aug 11 '11 at 18:12
@Dlamblin: Correct. If you want to fold at exactly the given width, without respecting whitespace, then use the fold command as in fgm's answer. – sleske Aug 11 '11 at 19:00
feedback

Once you set 'textwidth', you can select text with visual mode and press gq to wrap it nicely (you can also use Q on some older/legacy configurations).

A few useful tips:

gqgq (wrap the current line)
gq{ (wrap this 'paragraph', i.e. until the next blank line)
:h hq
link|improve this answer
+1, I accidentally hit gq while in vim, have spent the last half hour trying to see what it was I hit. This is so useful. – user176121 Nov 1 '11 at 3:32
2  
I think the second command should actually be gq}. – Martey Nov 17 '11 at 6:04
feedback
:set textwidth=30
link|improve this answer
How does textwidth handle it when there are no spaces, like in the original poster's example? I've had a play and it only seems to format based on textwidth if there are spaces (or assumedly, if the breakat variable is set to something else). – Andy May 5 '09 at 15:38
1  
@Andy textwidth will not handle a no-spaces situation. You can write your own formatexpr function to do that. – Swaroop C H May 5 '09 at 18:24
Thanks, I'll have a look at formatexpr – Andy May 6 '09 at 20:58
feedback

Your Answer

 
or
required, but never shown

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