VIM has support for matching pairs of curly brackets, parentheses, and square brackets. This is great for editing C-style languages like PHP and Javascript. But what about matching HTML tags?

Notepad++ has had this feature for as long as I've been using it. Being able to spot where blocks of HTML begin and end is very useful. What I'm looking for is something like this for vim (see the green div tags):

(a bonus feature: highlighting unclosed HTML tags, like the red tag in this screenshot).

matchit has been proposed as a next-best-thing, but it requires an extra keystroke to use its functionality. I'd like be able to see where the blocks of HTML begin and end without an extra keypress.

I've trawled the internet to find something like this for vim. Apparently, I'm not the only one, according to 2 other StackOverflow questions and nabble.

I've almost resigned myself to vim not being able to visually match html tags. Is it possible for vim to do this?

Addendum: If it is not currently possible to do this with any existing plugins, does any vimscript wizard out there have any pointers on how to approach writing a suitable plugin?

link|improve this question

60% accept rate
Could you explain in what way this feature "is very useful"? I don't really need to know everything on everything at every moment. When I need to know something Vim is designed to make it very easy to know in very few keystrokes. – romainl Nov 17 '11 at 15:25
4  
While I don't need to know everything, being able to easily know when an HTML tag ends allows me to grok the structure of the file I'm working with. I also deal with a lot of badly-written code, so sometimes I'll encounter a html tag with no closing tag, which always needs to be fixed. – linqq Nov 17 '11 at 16:02
3  
@romainl I read your answer very often and I really like your point of view. But this time I have to disagree. I can consider this feature not essential but I find that this is a pretty nice question. It looks strange to mine that there isn't an easy way to get it with Vim. – lucapette Nov 17 '11 at 23:21
   
@lucapette, thank you. I like the question too, actually. I've never used such a feature and I've never felt the need for it. But it's probably one of those things you can't live without once you try. I like my workflow and workspace clean and focused, free from "administrative debris" and I think such a feature might be superfluous. The perfect candidate for a plugin. One may try to take inspiration from matchit as a starting point, probably. – romainl Nov 18 '11 at 6:19
6  
Have you seen this answer? stackoverflow.com/questions/1957083/… – Greg Sexton Nov 18 '11 at 9:28
show 5 more comments
feedback

3 Answers

up vote 70 down vote accepted
+100

I had to work with some HTML today so thought I would tackle this. Added a ftplugin to vim.org that should solve your problem.

You can get it here on vim.org.

You can get it here on github.

Hope it works for you. Let me know if you have any problems.

link|improve this answer
1  
Thank you! That's exactly the functionality I'm looking for. Only two minor quibbles, if you feel like fixing them: 1. Currently, only the opposite tag is matched. Would it be possible to also match the tag that the cursor is on? 2. Currently, if a html tag has attributes, those are selected as well. Is it possible only to select the tag name, without attributes? – linqq Nov 21 '11 at 19:49
Good suggestions. They should both be taken care of in v1.2 up on vim.org. The matching regex is more complicated now so let me know if you find any bugs. – Greg Sexton Nov 21 '11 at 20:35
Not sure if you can do anything about this: one thing that I noticed was that the first tag highlight only shows up if the bottom tag is visible on the screen. Once again, thank you again very much for solving this problem! – linqq Nov 21 '11 at 20:39
1  
As requested, I've added this ftplugin to github. See my updated answer for the link. – Greg Sexton Nov 22 '11 at 19:16
1  
Just found this, looks good, but note that I had to add "filetype plugin on" to my ~/.vimrc to get it to turn on. If it's not working after you place the plugin in your ftplugin folder, add the above to your ~/.vimrc and you should be all set. – Geoff Mar 27 at 0:04
show 7 more comments
feedback

Greg's html.vim doesn't work for general xml files that contain nested elements with same name, or when element names appear in attribute values. Example:

    <root id="root">
        <child>
            <something>
                <child />
            </something>
        </child>
    </root>

The root element will not get highlighted because "root" also appears in the id attribute. The first child element will not get highlighted, while the second will incorrectly be matched with the closing child tag.

link|improve this answer
Your example works perfectly for me. Are you using the latest version from github? This probably isn't the best forum for this discussion if you are still having problems. Could you raise an issue on the github page? Thanks. – Greg Sexton Mar 27 at 21:29
feedback

Replace the html.vim file with the file from this website. This is for html tag matching and it does some other stuff.


EDIT
I found a few things that might help. People said that the plugin Matchit solved your highlighting problem.. The only problem with this is you have to manually type %'s in. This is only a solution to the highlighting portion of your problem.

Also check out this question and read the first answer, this is also another solution to the highlighting problem Using VIM as a HTML editor

I hope this helped.

link|improve this answer
1  
Gabe, this plugin does not highlight html tags as I asked for. It merely provides indentation rules for html. This was also noted by someone else who asked a similar question. – linqq Nov 21 '11 at 13:32
@linqq meh Well then after I'm done with what I'm doing right now, I'll go look for a solution to your problem and update my answer. – Gabe Nov 21 '11 at 13:34
-1 this doesn't solve the problem – lucapette Nov 21 '11 at 13:39
Edited it, hopefully this will solve your problem. – Gabe Nov 21 '11 at 13:53
@Gabe, unfortunately not. I referenced both that thread and matchit in my original question, and neither one provides a solution for highlighting of HTML tags in vim. – linqq Nov 21 '11 at 13:57
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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