vote up 4 vote down star
3

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?

flag

Do you mean wrap text, and not indent text? – lc May 5 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 at 8:02

4 Answers

vote up 5 vote down check

Using fold(1) is one possibility:

:%!fold -w5

Result:

aaaaa
aaaaa
aaa 
bbbbb
bbbbb
bbb 
ccccc
ccccc
ccc
link|flag
1  
This assumes a fold command is installed. – Swaroop C H May 5 at 11:55
vote up 2 vote down

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|flag
vote up 4 vote down

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|flag
1  
+1 for the gq key command from visual mode, thats awsomely useful – Fire Crow Aug 26 at 18:00
vote up 4 vote down
:set textwidth=30
link|flag
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 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 at 18:24
Thanks, I'll have a look at formatexpr – Andy May 6 at 20:58

Your Answer

Get an OpenID
or

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