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 as e-text editor, and found that it helped me to comprehend what I'm looking at easier.

For example rather than

<p>
    <a href="http://www.example.com">
        This is a bogus link, used to demonstrate
an example
    </a>
</p>

it would appear as

<p>
    <a href="somelink">
        This is a bogus link, used to demonstrate
        an example
    </a>
</p>
link|improve this question

See also stackoverflow.com/q/759577/240633 – ergosys Mar 13 at 0:56
feedback

6 Answers

up vote 5 down vote accepted

I don't think there is a way to configure vim to do that, but you might try :set nowrap which will allow vim to display long lines by scrolling to the right. This may be useful for examining the overall structure of a document, but can be less convenient for actually editing.

The options closest to what you're looking for are linebreak and showbreak. With showbreak, you can modify what is displayed at the left margin of lines that are wrapped, but unfortunately it doesn't allow a variable indent depending on the current context.

link|improve this answer
feedback

There is a patch for this, but it's been lingering for years and last time I checked did not apply cleanly. See the "Correctly indent wrapped lines" entry in http://groups.google.com/group/vim_dev/web/vim-patches -- I really wish this would get in the mainline.

Update: that link seems to have bitrotted. Here is a more up to date version of the patch.

link|improve this answer
I'd like that very much, I'll make html markup way more readable – jelera Apr 18 '11 at 20:13
I don't see any patch on that site. Can anyone else confirm? – puk Feb 23 at 11:40
Apparently the site was recently rebuilt and those links are broken. There is a recent blog entry with an even newer patch, on that same site. – ergosys Feb 23 at 19:39
feedback

I don't think it's possible to have exactly the same indentation, but you can still get a better view by setting the 'showbreak' option.

:set showbreak=>>>

Example:

<p>
    <a href="http://www.example.com">
        This is a bogus link, used to demonstrate
>>>an example
    </a>
</p>

The real thing looks better than the example code above, because Vim uses a different colour for '>>>'.

link|improve this answer
1  
you can also use :set showbreak=\ \ \ \ \ \ \ \ \ \ \ \ \ \ (the backslash space combination makes the break character space. Thus, you could add enough spaces to be deeper than most of your wrapped code (e.g., 10 spaces would be deeper than 2 four space tabs and 14 would be deeper than 3 four space tabs); a nice feature of the space is that it is less visually distracting (if that's what you want). – Jeromy Anglim Feb 1 '11 at 4:17
1  
@Jeromy Anglim A minor fix: set showbreak=\ \ \ \ \ \ \ \ \ \ \ \ \ \ is much less readable then let &showbreak=repeat(' ', 14) – ZyX Feb 14 '11 at 18:26
@ZyX thanks. that's much easier to read. – Jeromy Anglim Feb 14 '11 at 23:47
feedback
:set smartindent
:set autoindent

I think you still have to use a return though

link|improve this answer
This will only work for writing new code, not reading existing one... – scrible Jul 30 '09 at 2:37
feedback

The only way I know of that you could do this would be to use a return character (as mentioned by Cfreak) and combine the textwidth option with the various indentation options. If your indent is configured correctly (as it is by default with the html syntax I believe, but otherwise see the autoindent and smartindent options), you can:

:set formatoptions = tcqw
:set textwidth = 50
gggqG

If you have any customisation of the formatoptions setting, it may be better to simply do:

:set fo += w
:set tw = 50
gggqG

What this does:

:set fo+=w  " Add the 'w' flag to the formatoptions so 
            " that reformatting is only done when lines
            " end in spaces or are too long (so your <p>
            " isn't moved onto the same line as your <a...).
:set tw=50  " Set the textwidth up to wrap at column 50
gg          " Go to the start of the file
gq{motion}  " Reformat the lines that {motion} moves over.
G           " Motion that goes to the end of the file.

Note that this is not the same as a soft wrap: it will wrap the lines in the source file as well as on the screen (unless you don't save it of course!). There are other settings that can be added to formatoptions that will auto-format as you type: details in :help fo-table.

For more information, see:

:help 'formatoptions'
:help fo-table
:help 'textwidth'
:help gq
:help gg
:help G
:help 'autoindent'
:help 'smartindent'
link|improve this answer
feedback

If your HTML is sufficiently well formed, running it through xmllint might help:

:%!xmllint --html --format
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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