vote up 9 vote down star

Vim's % operator jumps to matching parentheses, comment ends and a few other things. It doesn't, however, match XML tags (or any other tag, to the best of my knowledge).

What's the best way to jump to the matching XML tag using vim?

Note: What I really want to do is duplicate a section in an XML file without manually looking for the matching tag.

flag

2 Answers

vote up 10 vote down check

There is a vim plugin called matchit.vim . You can find it here: http://www.vim.org/scripts/script.php?script_id=39 . It was created pretty much the exact purpose you describe.

Install that, place your cursor on the body of the tag (not the <>, else it'll match those) and press % to jump to the other tag. See the script's page to find out what else it matches.

link|flag
Nice one. Has been sitting on my hard disk all the time. – Manni Feb 1 at 15:55
There's some version of matchit, which ships with Vim already btw. runtime macros/matchit.vim should enable it, and allow % to match XML tags. – Svend Aug 5 at 16:15
vote up 3 vote down

No plugins required:

yat - yank an tag

yit - yank inner tags

dat - delete an tag

and so on ...

link|flag
Would you clarify? I cannot understand how you can jump to the matching tag with "yank" and "delete". – Masi Aug 21 at 20:49
2  
It doesn't really solve exactly the question answered, but you can do a movement operation on the specified movement. For example, if you want to beautify the contents of a tag, go somewhere inside the content and type gqit and this will only wrap inside of that tag. That kind of thing. This answers the question in that he can go just inside the tag of the whole block and yank it with yat and that will allow him to duplicate a section in his XML file – Matt Sep 16 at 22:13

Your Answer

Get an OpenID
or

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