You know how Notepad++ has this feature that when you click on a tag (say ) it automatically highlights the ending tag () as well? What\'s it called? And how do you tweak Vim to
To match tags:
Have a look at matchit plugin. Vim 6 onwards matchit.vim is packaged with standard distribution. To install matchit, read :help matchit-install.
:help matchit-install
Make sure filetype plugin on is in vimrc.
filetype plugin on
Once installed, use % to match the start/end tag. :help matchit-intro for more help.
%
:help matchit-intro